Git Clone失败,early EOF

头疼问题,一个比较大的项目,公司网络有点差,下了近一个小时,文件夹下空空如也,克隆失败,报错如下:

Clone failed
           early EOF
           The remote end hung up unexpectedly
           index-pack failed
           RPC failed; curl 56 SSL read: error:00000000:lib(0):func(0):reason(0), errno 10054

解决方法,设置postBuffer大小:

git config --global http.postBuffer 524288000  // 如果还满足不了就翻倍

http.postBuffer是HTTP传输所使用的缓冲区的最大大小(以字节为单位)。对于大于此缓冲区大小的请求,HTTP / 1.1 Transfer-Encoding: chunked用于避免在本地创建大量的包文件。默认值是1 MiB,这对大多数请求来说已经足够了。

解决方法

你可能感兴趣的:(Git Clone失败,early EOF)