Windows命令行使用Git下的Curl命令

今天在windows上安裝SpaceVim時,提示須要安裝Git和curl,安裝了Git,本來覺得要經過mingw或者cygwin來安裝curl,最後發現原來Git已經自帶curl命令,咱們只須要將其配置一下便可在windows命令行使用。git

安裝Git

安裝除了一步須要注意的其它都點下一步便可,須要注意的是PATH環境選擇界面,選擇「Run Git from the Windows Command Prompt」vim

Git安裝

Git的環境變量會自動添加,若是發現環境變量PATH中沒有,須要手動添加windows

驗證

打開cmd命令提示符,運行命令(git --version)檢查git 版本號,若是正確顯示版本號說明安裝正常bash

GitVersion

配置curl

在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版本號編輯器

CurlVersion

總結

其實不單單curl命令能夠這樣,Git還自帶了不少命令,也能夠經過這種方式配置url

參考資料

全世界最好的編輯器VIM之Windows配置(gvim).net

相關文章
相關標籤/搜索