从gitlab pull代码的时候,报了下面错误
$ git pull
remote: Enumerating objects: 27, done.
remote: Counting objects: 100% (27/27), done.
remote: Compressing objects: 100% (8/8), done.
remote: Total 14 (delta 5), reused 9 (delta 0), pack-reused 0
Unpacking objects: 100% (14/14), 997 bytes | 27.00 KiB/s, done.
fatal: bad object refs/remotes/origin/master
error: http://192.168.99.220:8880/code/server/*******************.git did not send all necessary objects
解决办法
mv .git/refs/remotes/origin/master /tmp
$ git gc
然后重新选择远程分支
$ git branch --set-upstream-to=origin/master master
然后$ git pull 会打开一个文件让你填写合并信息,我直接关掉了文章来源:https://www.toymoban.com/news/detail-638089.html
然后就正常了,问题的原因还没有搞清楚,猜测可能是我在没有网络的情况下进行了commit和 push 操作文章来源地址https://www.toymoban.com/news/detail-638089.html
到了这里,关于fatal: bad object refs/remotes/origin/master的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!