git clone early EOF error

问题1 error: RPC failed; curl 56 Malformed encoding found in chunked-encoding

解决办法:git config --global core.compression -1

问题2:工程太大导致的问题,例如300M/500M/1G的项目文件clone,问题为:

Receiving objects:  13% (1309/10065), 796.00 KiB | 6 KiB/s
fatal: The remote end hung up unexpectedly

类似

解决方法为:将http.postBuffer设置的尽量大,例如git config --global http.postBuffer 524288000  (500M)

git config --global http.postBuffer 1048576000  (1G)。再大的应该是依次类推吧

因为下载的时候不止是工程数据,还有其它配置数据,总量会大于工程数据量,所以设置的缓存大小一定要比工程大小多一些。

你可能感兴趣的:(git clone early EOF error)