git pull遇到的问题

early EOF index-pack failed
1
2
3
4
5
6
7
$ git clone https://github.com/boostorg/boost.git
Cloning into 'boost'...
remote: Counting objects: 183543, done.
remote: Compressing objects: 100% (69361/69361), done.
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed

我遇到这个应该是项目中有一些大文件,所以无法传输

解决方法

在项目目录下,先使用 git config -l 查看一下git的配置,添加以下配置

1
git config --add core.compression -1

compression 是压缩的意思,从 clone 的终端输出就知道,服务器会压缩目标文件,然后传输到客户端,客户端再解压。取值为 [-1, 9],-1 以 zlib 为默认压缩库,0 表示不进行压缩,1..9 是压缩速度与最终获得文件大小的不同程度的权衡,数字越大,压缩越慢,当然得到的文件会越小。

git clone 遇到的问题

同样是项目中文件过大,无法clone下来

解决方法

1
git config --global http.postBuffer 524288000

把git的postBuffer设置大一些就可以了