问题:
Early EOF the remote end hung up unexpectedly index-pack failed RPC failed;
curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054
解决
C:\Users\able>git config -l
http.sslbackend=openssl
http.sslcainfo=D:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
http.sslverify=false
credential.helper=manager
//设置
C:\Users\able>git config --global http.postBuffer 524288000
// 如果还满足不了就翻倍
C:\Users\able>git config -l
http.sslbackend=openssl
http.sslcainfo=D:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
http.sslverify=false
credential.helper=manager
http.postbuffer=524288000