Git

Git 解决 would clobber existing tag 问题

Posted by Kerwen Blog on September 25, 2020

在用Git去更新代码的时候有遇到下面的问题:

1
2
3
4
5
> git pull --tags origin master
From https://github.com/MY/REPO
* branch            master     -> FETCH_HEAD
! [rejected]        latest     -> latest  (would clobber existing tag)
9428765..935da94  master     -> origin/master

原因是我删了原有的一个tag,然后重新创建了一个相同名字的。
解决方案:

1
git fetch --tags -f

强制刷新一下本地的tags

https://stackoverflow.com/questions/58031165/how-to-get-rid-of-would-clobber-existing-tag