Git使用问题汇总附带解决方法
- [一 git pull 代码时报错: Auto packing the repository in background for optimum performance. See "git help gc"](#一 git pull 代码时报错: Auto packing the repository in background for optimum performance. See “git help gc“)
一 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.查看悬空对象:
csharp
git fsck --lost-found
2.清理悬空对象:
csharp
git gc --prune=now
3.再更新代码
csharp
git pull