OpenSSL SSL_read: Connection was reset, errno 10054

解决方法,需要执行以下两个步骤:

  1. 输入 git config --global http.sslVerify "false" ,解除SSL验证;

  2. 将地址 https:// 改为 git:// ,避开SSL验证。

 一般执行完1就好用了。

原文地址:https://www.cnblogs.com/codinghard/p/15647752.html