Git设置使用和取消HTTP代理示例

Git有特殊需求,要用代理拉代码,惯性思维是用Linux的export http_proxy,然后会发现不管用。

正确的方法是使用Git的config设置代码,示例指令:

git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global --unset http.proxy
git config --global --unset https.proxy
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'

 

未经允许不得转载:阿藏博客 » Git设置使用和取消HTTP代理示例