2022-05-30 Git 解决 would clobber existing tag 问题

问题

> 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,然后重新创建了一个相同名字的。

解决方式

# 强制刷新一下本地的tags
$ git fetch --tags -f

原文: Git 解决 would clobber existing tag 问题

你可能感兴趣的:(2022-05-30 Git 解决 would clobber existing tag 问题)