首页  编辑  

VScode 拉取代码报错 would clobber existing tag

Tags: /计算机文档/软件应用技巧/   Date Created:

VS Code,拉取代码的时候,报错误: would clobber existing tag,而之前都能正常拉取,也能提交,突然出现这个错误,怎么解决?

查看报错日志发现以下内容:

> git pull --tags origin feature/xxx-2.0.0
From 173.110.11.22:GG-WORK-OP/vv-desktop
* branch                feature/xxx-2.0.0 -> FETCH_HEAD
! [rejected]            v1.7.7     -> v1.7.7  (would clobber existing tag)
 

解答:

有人在github网站上,删除了原来的一个git tag,然后重新创建了一个相同名字的,导致tag的指纹不匹配。

解决办法:强制刷新一下本地的tags

 

git fetch --tags -f

参考:

【git】would clobber existing tag 报错解决-CSDN博客