git clone 失败 early EOF

git克隆失败,报错如下

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 config http.sslVerify "false"

如果提示:
fatal: not in a git directory

执行:

git init

你可能感兴趣的:(git)