标签:oba global 127.0.0.1 方案 config 使用 style conf 方法
昨天由于在用sourceTree上传下拉代码的时候,速度实在太慢,就照着百度上的方法设置了代理,结果导致sourceTree无法访问服务器,经检查排除发现可能是因为公司网络不能使用代理,被防火墙挡住了。
经过多种方法试验,最后发现一种可行方案并解决问题:
我们在设置代理的时候在终端设置:
git config --global https.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
标签:oba global 127.0.0.1 方案 config 使用 style conf 方法
原文地址:http://www.cnblogs.com/mafeng/p/6215806.html