• git push报:OpenSSL SSL_read: Connection was reset, errno 10054错误
  • 发布于 2个月前
  • 385 热度
    0 评论

我在用git推送代码到服务器时,系统报:fatal: unable to access 'https://github.com/xxxx/Management.git/': OpenSSL SSL_read: Connection was reset, errno 10054错误提示。

解决方法:

1.输入 git config --global http.sslVerify "false" ,解除SSL验证。如下图:

2.将地址 https:// 改为 git:// ,避开SSL验证。
 一般执行完1就好用了。


用户评论