错误1
Clone failed
early EOF
the remote end hung up unexpectedly
index-pack failed
RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054
或者
error: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
解决:
因为Git限制了推送数据的大小导致的错误;重新设置一下通信缓存的大小即可
在目标文件夹中打开git命令窗口键入命令 git config http.postBuffer 524288000
或者 git config --global http.postBuffer 524288000