克隆代码仓库异常

克隆代码仓库异常

克隆代码仓库出现异常,异常码如下

error: RPC 失败。curl 18 transfer closed with outstanding read data remaining
fatal: 远端意外挂断了
fatal: 过早的文件结束符(EOF)
fatal: index-pack 失败

这是因为代码仓库过大导致git clone异常,调整传输参数即可,其中524288000 = 500*1024*1024,即500M

git config --global http.postBuffer 524288000