fatal: unable to access ‘xxx’: Failed to connect to github.com port 443 after 21095 ms: Timed out[git 踩坑记]
记录今天git碰到的坑
报错:
fatal: unable to access ‘xxx’: Failed to connect to github.com port 443 after 21095 ms: Timed out
解决参考:
https://blog.youkuaiyun.com/weixin_42488513/article/details/115297480
主要是下面两行关掉代理
git config --global --unset http.proxy
git config --global --unset https.proxy
报错2:
OpenSSL SSL_read: Connection was reset, errno 10054
解决参考:
https://www.cnblogs.com/gscvery/p/15695046.html
关掉ssl验证
git config --global http.sslVerify "false"