我只有分支主和我得到这个错误,每次我尝试“git拉”:

error: Couldn't set refs/remotes/origin/master
From /var/lib/git/xxx/project
 ! a0f80ea..49177a3  master     -> origin/master  (unable to update local ref)

当我执行“git pull origin master”时,我得到:

error: Couldn't set ORIG_HEAD
fatal: Cannot update the ref 'ORIG_HEAD'.

我一直在寻找,却找不到原因


当前回答

问题

Windows用户经常会遇到这个问题

git pull 

error: cannot lock ref不能更新本地ref

导致

原因a)有多个分支,其 从开头到任意斜杠(或到结尾)的名称只在大小写上有所不同。

Branch name clashing (upper/lower case)
#######################################

# Example 1)
#############################
feature/releasecandidate/fix123
feature/releaseCandidate/improveFeature789
------------------------
               ^
  Identical from beginning up to a slash (here the 2nd one)
  except for the marked letter, where the upper/lower case differs




# Example 2)
#############################
releaseBranch
releasebranch
-------------
       ^
  Identical from beginning to the end
  except for the marked letter

原因b)在linux上也是一个问题:一个分支是另一个分支的前缀,带有斜杠边界:

Prefix with slash-boundary
#######################################

# Example 1) - also a problem on linux
#############################
feature/release2021
feature/release2021/fixIssue07
                   ^
              slash boundary

# Example 2)
#############################
feature/release2022
feature/Release2022/fixIssue99
        ^          ^
  differing case   slash boundary
 (problem on 
   windows)

解决方案

删除原因(参见上面的确切原因)。

# inspect your branches, to see if you have the upper/lower case problem
git ls-remote --heads YOUR-GIT-URL

例如:创建一个分支命名策略,例如全部用小写字母;或者最后一个斜杠前面的字母小写。或者一些智能钩子,可以检测到违规。(但是注意:在原因a)中,问题只在windows上,而不是linux上)。

背景

问题是windows将这些分支(来自示例1和2)存储在.git文件夹中

# inspect the files/folders under
.git/refs/remotes/origin/

原因a)窗口不能区分 大写和小写的区别,所以git在window上疯了。

在原因b中,你不能有一个文件夹(例如feature/release2021/)与文件(feature/release2021)同名。

解决方案

一个短期的解决办法通常是有效的(直到你消除了原因):

git pack-refs --all

# delete the contents of .git/refs/remotes/origin/*  
rm -rf .git/refs/remotes/origin/*

git pull; git pull; git pull   # all good? yes!

其他回答

我发现同样的错误消息试图从一个比特币回购到我的lokal拷贝。也只有一个Branche Master, git pull origin Master命令会导致这个错误消息

From https://bitbucket.org/xxx
 * branch            master     -> FETCH_HEAD
error: Couldn't set ORIG_HEAD
fatal: Cannot update the ref 'ORIG_HEAD'.

解决方案如下

Git reflog找到最后一次提交的编号 Git重置——hard < number >重置到最后一次提交 Git拉原点主控再拉一次没有出错

使用gitbach line命令,使用git update-ref来更新本地分支的引用:

$ git update-ref -d refs/remotes/origin/[locked branch name]

然后使用$ git拉

[locked branch name]是由于提交id不匹配而发生错误的分支的名称。

直接的答案

git remote prune origin
rm .git/refs/remotes/origin/master
git fetch
git pull origin master

按步骤执行上述命令

这对Windows来说已经足够了:

Git包引用——全部

再次克隆存储库,并将.git文件夹复制到破碎的项目中。