Skip to content

Pass -f to git fetch --tags so tag changes work

David Faure requested to merge work/dfaure/git-force-tag-update into master

Before: $ hotspot (master) >git fetch --tags origin From https://github.com/KDAB/hotspot.git ! [rejected] continuous -> continuous (would clobber existing tag)

After: $ hotspot (master) >git fetch -f --tags origin From https://github.com/KDAB/hotspot.git t [tag update] continuous -> continuous

I had the same issue for a very long time, in KDE repositories where a release tag was moved before the release.

Merge request reports