今天在push项目到github时,一看pushing的圈圈转了这么久,深感不妙。
果然,几分钟后报出了Failed to connect to localhost port 1080: Connection refused。
查了网上的解决方案
发现可能是代理的问题,于是在Terminal中输入了
git config --global -l
看到我是设置了代理 localhost的。
然后我在
C:\Users\Administrator\.gitconfig
中删除了代理设置
不曾想,又报出了一个错误:
Failed to connect to github.com port 443: Timed out
苦寻无果,最终想起了之前为了方便还是其他什么原因设置了etc\hosts 文件(C:\Windows\System32\drivers\etc\hosts)
192.30.253.113 github.com 192.30.252.131 github.com
删除后,成功push