今天在windows上安裝SpaceVim時,提示須要安裝Git和curl,安裝了Git,本來覺得要經過mingw或者cygwin來安裝curl,最後發現原來Git已經自帶curl命令,咱們只須要將其配置一下便可在windows命令行使用。git
安裝除了一步須要注意的其它都點下一步便可,須要注意的是PATH環境選擇界面,選擇「Run Git from the Windows Command Prompt」vim
Git的環境變量會自動添加,若是發現環境變量PATH中沒有,須要手動添加windows
打開cmd命令提示符,運行命令(git --version)檢查git 版本號,若是正確顯示版本號說明安裝正常bash
在Git的安裝目錄下有個「mingw64」或者「mingw」文件夾,其實裏面已經帶有curl命令,但他只能在git-bash中運行,爲了能在windows命令行也能調用該命令,能夠在Git安裝目錄的cmd文件夾中新建一個curl.cmd文件,而後將如下內容複製進去便可curl
@rem Do not use "echo off" to not affect any child calls. @setlocal @rem Get the abolute path to the parent directory, which is assumed to be the @rem Git installation root. @for /F "delims=" %%I in ("%~dp0..") do @set git_install_root=%%~fI @set PATH=%git_install_root%\bin;%git_install_root%\mingw\bin;%git_install_root%\mingw64\bin;%PATH% @rem !!!!!!! For 64bit msysgit, replace 'mingw' above with 'mingw64' !!!!!!! @if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH% @if not exist "%HOME%" @set HOME=%USERPROFILE% @curl.exe %*
打開cmd 命令提示符,運行命令(curl –-version)檢查curl版本號編輯器
其實不單單curl命令能夠這樣,Git還自帶了不少命令,也能夠經過這種方式配置url