解决 Failed to connect to github.com port 443:connection timed out

这个问题困扰了我一天,终于解决了。个人经历:没有第一步,只执行第二步,无法解决问题。

解决方法:

第一步:设置全局代理

git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy http://127.0.0.1:1080

第二步:取消全局代理

git config --global --unset http.proxy
git config --global --unset https.proxy

问题解决。

你可能感兴趣的:(github)