git pull 时报fatal: early EOF fatal: index-pack failed处理方式

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

处理方式一:

This error may occur for memory needs of git. You can add these lines to your global git configuration file, which is .gitconfig in $USER_HOME, in order to fix that problem.

[core] 
packedGitLimit = 512m 
packedGitWindowSize = 512m 
[pack] 
deltaCacheSize = 2047m 
packSizeLimit = 2047m 
windowMemory = 2047m

处理方式二:

# git pull --depth 100 

# git pull --depth 200

.

.

.# git pull --all

转载于:https://my.oschina.net/u/199525/blog/827813

你可能感兴趣的:(git pull 时报fatal: early EOF fatal: index-pack failed处理方式)