在执行 git pull
操作时可能会遇到 can't lock ref 'xxxx' ,some local refs could not be update; try running git remote prune origin
to remove any old, conflicting branches。
出现以上的问题的原因是本地所追踪的远程分支,与本地对应分支不同,导致的 git pull
失败。
如有一个本地分支 branch_01
,其远程分支被其他人强制覆盖,或者删除,此时本地的该分支仍然追踪引用远程上的对应分支,而本地和远程的对应分支的 refs
此时并不相同,导致报错:
error: cannot lock ref.. 'refs/tags' exists; cannot create 'refs/tags/
解决方案为:
执行:git remote prune origin
命令
该命名会检查本地仓库与远程仓库之间的差异,并清理本地仓库中仍然存在,而远程仓库已经不存在的分支,从而保持本地仓库与远程仓库之间可以保持同步。
【注意】:该命令只是删除本地仓库中的远程分支引用,并不是删除本地的一些分支,也不会修改删除远程代码仓中的分支
标签:pull,git,xxxx,仓库,refs,本地,远程,分支 From: https://www.cnblogs.com/Jeffxu/p/17985190