记录使用git遇到的问题


[KReceiving objects: 9% (6006/66733), 1.04 MiB | 13.00 KiB/s

early EOF the remote end hung up unexpectedly index-pack failed RPC failed;

curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054

错误原因 git的curl的postBuffer默认值较小

解决方法 

修改git传输字节限制 git config –global http.postBuffer 524288000 



出现如下错误:curl 56 OpenSSL SSL_read:SSL_ERROR_sysCALL

执行命令:

git config http.sslVerify "false"

参考:https://blog.csdn.net/m0_37052320/article/details/77799413

你可能感兴趣的:(记录使用git遇到的问题)