Git 代理设置记录

 

设置http代理
git config --global https.proxy http://127.0.0.1:1080
设置https代理
git config --global https.proxy https://127.0.0.1:1080
取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
设置socks5代理
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'
取消代理
git config --global --unset  http.proxy
git config --global --unset  https.proxy
只对github.com
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
#取消代理
git config --global --unset http.https://github.com.proxy

一般只要设置 http.proxy就可以了. https.proxy不用设置.

猜你喜欢

转载自blog.csdn.net/Mr_Pingg/article/details/124863765