likes
comments
collection
share

Git报错:Connection was reset, errno 10054 ,Failed to connect toxxxx解决方法

作者站长头像
站长
· 阅读数 117

Git报错:Connection was reset, errno 10054 ,Failed to connect toxxxx解决方法

根据图片显示的错误提示,很简单,就是提交时出现了错误导致提交失败。这个问题很可能是因为某一些网络原因导致了GitHub的提交错误,使用科学上网即可。

但是更多的原因是因为电脑使用了代理,例如常见的科学上网工具clash会开启系统代理后将电脑的代理端口设置为7890,所有导致了git默认的443无法访问。

检查自己电脑端口是不是使用了代理端口,将git的代理端口进行设置与其对应即可

Git报错:Connection was reset, errno 10054 ,Failed to connect toxxxx解决方法

已clash的7890端口为例:

 git config --global http.proxy http://127.0.0.1:7890
 git config --global https.proxy http://127.0.0.1:7890

成功

Git报错:Connection was reset, errno 10054 ,Failed to connect toxxxx解决方法

评论
请登录