git 下载代码到一半的时候出现 RPC failed; curl 56 OpenSSL SSL_read: Connection was reset, errno 10054
解决方法:
git bash 里输入命令
禁用 ssl 认证
git config --global http.sslVerify "false"
修改 git 缓存大小为 500M
git config --global http.postBuffer 500M
有的工程代码提交履历很多,500 m的缓存也不够用,我改为了 5000M(晕)
刷新 dns 缓存
ipconfig /flushdns
再次 git clone 成功