fatal: unable to access github. The requested URL returned error: 500

今天拉取/提交代码的时候遇到500错误码

$ git push
fatal: unable to access 'http://github.cn.alcatel-lucent.com/CIONTools/iPluggable.git/': 
The requested URL returned error: 500

通过: javascript git config --global http.proxy查询到当前是否设置了代理,如果有则取消这个设置: git config --global --unset http.proxy然后再push即可

猜你喜欢

转载自blog.csdn.net/github_38851471/article/details/89478755