报错:
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: unpack-objects failed
解决方法:更改buffer大小
Git config --global http.postBuffer 524288000
需要注意的是http.postBuffer 后,单位是b,524288000B也就500M左右
然后增加最低速度时间
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999
通过运行 git config --list --show-origin 你可以找到你的gitconfigs。