github开了代理还是push不上去

参考文章
http://t.csdn.cn/GnEby
记录一下,以免日后改不回来
第一步:
首先看
git config --global http.proxy
git config --global https.proxy
如果没有东西直接到第三步,如果有那就取消掉
第二步:
git config --global --unset http.proxy
git config --global --unset https.proxy
第三步:
重新设置代理
git config --global https.proxy 127.0.0.1:****
git config --global http.proxy 127.0.0.1:****
这里的****是端口号,查看代理一般都有写,可以是7890等

猜你喜欢

转载自blog.csdn.net/qq_43666068/article/details/132189882
今日推荐