Git使用问题汇总附带解决方法
一 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
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » Git使用问题汇总附带解决方法(持续更新)
发表评论 取消回复