Git设置代理的方式
不废话,设置Git代理,分全局和局部的配置。
设置代理
git config --global http.proxy http://proxyuser:proxypassword@proxy.server.com:port
git config --global https.proxy http://proxyuser:proxypassword@proxy.server.com:port
取消设置代理
git config --global --unset http.proxy
git config --global --unset https.proxy
设置特定地址代理
语法:git config --global --https[.域名地址].proxy=<代理地址>
给指定域名设置代理,例子:
git config --global --https.https://github.com.proxy=http://127.0.0.1:7890
查询当前代理
git config --global --get http.proxy
git config --global --get https.proxy
查询特定域名的代理
git config --global --get http[.域名地址].proxy
git config --global --get https[.域名地址].proxy
取消代理
git config --global --unset --https.https://github.com.proxy=http://127.0.0.1:7890
查询git设置的参数
git config --global --list
其他
git config
文档地址:https://git-scm.com/docs/git-config
复制请注明出处,在世界中挣扎的灰太狼