一 git pull 代码时报错: Auto packing the repository in background for optimum performance. See “git help gc“

问题:git本地仓库,如果长时间不进行清理,拉取代码的时候突然提示: Auto packing the repository in background for optimum performance

原因:本地一些 “悬空对象”太多(git删除分支或者清空stash的时候,这些其实还没有真正删除,成为悬空对象,可以使用merge命令可以从中恢复一些文件)

按步骤执行一下命令:
1.查看悬空对象:

git fsck --lost-found

2.清理悬空对象:

git gc --prune=now

3.再更新代码

git pull

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部