错误日志:
Clone failed
RPC failed; curl 56 OpenSSL SSL_read: Connection was reset, errno 10054
663 bytes of body are still expected
the remote end hung up unexpectedly
early EOF
index-pack failed
原因:出现这种问题可能是文件太大了
curl的postBuffer的默认值较小,需要在终端调整为到合适的大小,这里调整到500M
解决方法:
命令行输入输入以下3个命令:
git init
git config http.postBuffer 524288000
git config http.sslVerify "false"
问题解决