错误信息:
error: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054
fatal: the remote end hung up unexpectedly
fatal: protocol error: bad pack header
在百度上搜了一堆都没有解决,都是一些相同的答案,比如:
git config --global http.postBuffer 524288000
git config --global http.sslVerify "false"
但是,都行不通,最后去google找到了答案,并解决了问题:
git config --global pack.windowMemory "100m"
git config --global pack.SizeLimit "100m"
git config --global pack.threads "1"
git config --global pack.window "0"
网络下载速度缓慢
修改下载速度
git config --global http.lowSpeedLimit 0 git config --global http.lowSpeedTime 999999
亲测:以上设置以后仍然pull不下来,可能是家里面网的原因,周日上午9点半起来pull成功