解决git clone error: RPC failed; curl 18 transfer closed with outstanding read data remaining问题

前不久用执行 git clone命令时,一直报如下错误

    error: RPC failed; curl 18 transfer closed with outstanding read data remaining 
    fatal: The remote end hung up unexpectedly
    fatal: early EOF
    fatal: index-pack failed

查了查资料,发现是要克隆的项目太大了,好像是几百M的样子,而curl的默认Buffer值太小,解决方案也很简单,执行

git config –global http.postBuffer 524288000 

即可,这里的单位是字节B,524288000即500MB,如果需要克隆的项目更大,可以将这个值继续增大,只要Buffer的容量大于需要克隆的项目就行,一般使用2的次幂,必须可将以上指令中的数字乘2变成1G,其他容量没有试过。

你可能感兴趣的:(geek)