标签:代理 config 移除 80端口 unset 127.0.0.1 nbsp col set
1、查看当前代理
git config --global http.proxy
2、配置git走代理,可走http代理也可以走socks5代理,可根据自己的代理协议而定
#http代理 git config --global http.proxy ‘http://127.0.0.1:1080‘ #socks5代理 git config --global http.proxy ‘socks5://127.0.0.1:1080‘ #注意1080端口号改为自己使用的代理的端口
3、不需要代理时可移除这个代理配置
git config --global --unset http.proxy
标签:代理 config 移除 80端口 unset 127.0.0.1 nbsp col set
原文地址:https://www.cnblogs.com/winsons/p/10783565.html