解决 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
pull或push成功!
所有评论(0)