github push 10054问题
使用Git上传本地仓库到Github时,本地连接了代理,导致Git与Github的连接收到阻碍。
于是在Bash中返回如下错误:
Git Push时报错:fatal: unable to access 'https://github.com/xx/yy.git/': OpenSSL SSL_read:
Connection was reset, errno 10054
解决方案
git config --global --unset-all remote.origin.proxy
git config --global http.sslVerify "false"原文链接:https://blog.csdn.net/JEsoloH/article/details/114686518
Comments
Post a Comment