菜鸟笔记
提升您的技术认知

解决 git clone OpenSSL SSL_read: Connection was reset 的问题

方法1 :

先修改设置解除ssl验证。

git config --global http.sslVerify "false"

然后重新clone

方法2:

如果提示Filename too long,说明文件名或路径太长27797bb

git config --global core.longpaths true

方法3:

如果是上传push提示的话。可能是文件过大

修改为500M

git config http.postBuffer 524288000

方法4:网速慢导致的the remote end hung up unexpectedly 问题

git config --global ssh.lowSpeedLimit 0
 git config --global ssh.lowSpeedTime 999999