赞
踩
在使用之前的代码时,报错:fatal: unable to access ‘https://github.com/xxx/xxx.git/’:
OpenSSL SSL_read: Connection was reset, errno 10054
fatal: unable to access 'https://github.com/xxx/xxx.git/':
OpenSSL SSL_read: Connection was reset, errno 10054
主要报错信息内容翻译如下所示:
fatal: unable to access 'https://github.com/xxx/xxx.git/':
OpenSSL SSL_read: Connection was reset, errno 10054
翻译:
致命:无法访问’https://github.com/xxx/xxx.git/':
OpenSSL SSL_read:连接已重置,错误号10054
经过查阅资料,发现这个错误产生的原因主要有以下两种。
一是git在拉取或者提交项目时,默认会使用git的http和https代理,但我们本地环境本身就有SSL协议了,所以取消使用git的https代理即可,如果不行就再取消http的代理。
二是当前网络环境不好,当前的代理网速过慢,所以偶尔失败。
小伙伴们按下面的解决方法即可解决!!!
要解决这个错误,这里总结了以下几个解决办法。
取消git本身的https代理,使用本机的环境,如果本地环境没有的话,默认仍然使用git的
在项目文件夹的命令行窗口执行下面代码,然后再git commit 或git clone
//取消https代理
git config --global --unset https.proxy
//取消http代理
git config --global --unset http.proxy
更换更(fan)好(qiang)的网络环境,这样就能提高服务器连接速度,能从根本解决 time out 443问题
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。