侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

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

2023-11-29 星期三 / 0 评论 / 0 点赞 / 51 阅读 / 566 字

处理方式一: This error may occur for memory needs of git. You can add these lines to your global git conf

处理方式一:

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

广告 广告

评论区