赞
踩
本地有个项目,需要上传到github,仓库建好以后,推送到远端的时候报错
Failed to connect to 127.0.0.1 port 1080 after 2063 ms: Couldn't connect to server、Failed to connect to github.com port 443 after 21083 ms: Couldn't connect to server
出现Couldn’t connect to server的原因多半是因为先前通过下述终端命令设置了github的访问代理,取消即可正常访问。
git config --global http.proxy http://127.0.0.1:1080
git config --global http.proxy https://127.0.0.1:1080
1、确保自己能够ping得通github.com。
2、依次在Git Bash中输入下面两行命令,然后在执行clone命令就好了!
git config --global --unset http.proxy
git config --global --unset https.proxy
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。