Windows命令行使用Git下的Curl命令
程序员文章站
2022-06-05 18:03:14
...
今天在windows上安装SpaceVim时,提示需要安装Git和curl,安装了Git,原本以为要通过mingw或者cygwin来安装curl,最后发现原来Git已经自带curl命令,我们只需要将其配置一下即可在windows命令行使用。
安装Git
安装除了一步需要注意的其它都点下一步即可,需要注意的是PATH环境选择界面,选择“Run Git from the Windows Command Prompt”
Git的环境变量会自动添加,如果发现环境变量PATH中没有,需要手动添加
验证
打开cmd命令提示符,运行命令(git --version)检查git 版本号,如果正确显示版本号说明安装正常
配置curl
在Git的安装目录下有个“mingw64”或者“mingw”文件夹,其实里面已经带有curl命令,但他只能在git-bash中运行,为了能在windows命令行也能调用该命令,可以在Git安装目录的cmd文件夹中新建一个curl.cmd文件,然后将以下内容复制进去即可
@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还自带了很多命令,也可以通过这种方式配置
参考资料
转载于:https://my.oschina.net/noke/blog/2065107
上一篇: svn命令行的使用
下一篇: KVM命令行使用工具(virsh)详解。