问题1
fatal: unable to access 'https://github.com/.......': OpenSSL SSL_read: Connection was reset, errno 10054
解决方法:不验证 SSL :
git config --global http.sslVerify "false"
问题2
fatal: unable to access 'https://github.com/......': Failed to connect to github.com port 443: Timed out
解决方法:取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
设置代理
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890
![](https://img.haomeiwen.com/i20283521/36cf36be9888206e.png)
参考资料1:https://stackoverflow.com/questions/783811/getting-git-to-work-with-a-proxy-server-fails-with-request-timed-out
参考资料2:https://blog.csdn.net/Hodors/article/details/103226958 (的评论区)
![](https://img.haomeiwen.com/i20283521/d7a02fb9ece0bdd2.png)
![](https://img.haomeiwen.com/i20283521/fe3524fc6836cfd2.png)
问题3
error: RPC failed; curl 28 OpenSSL SSL_read: Connection was reset, errno 10054 fatal: expected flush after ref listing
解决方法:
git config --global http.sslVerify "false"
网友评论