git遇到remote: fatal: early EOF + index-pack failed的处理方法

git遇到remote: fatal: early EOF + index-pack failed的处理方法

感谢这位的博客提供的解决方法

http://www.lszhang.com/topics/git-push-%E6%97%B6%E5%87%BA%E7%8E%B0-remote-fatal-early-eof-%E9%94%99%E8%AF%AF

 

修改 GIT 的本地 config 文件,在 core 中加入:

compression = -1

这里是在clone方处理

windows git目录在c:\Program Files (x86)\Git\etc\gitconfig中

 

其他辅助方法参考http://git.661346.n2.nabble.com/Large-pack-causes-git-clone-failures-what-to-do-td5481488.html

git repack --max-pack-size=100m -a -d

你可能感兴趣的:(git遇到remote: fatal: early EOF + index-pack failed的处理方法)