I am unsure if what I want to do is sensible in git. It works but is it sensible?
I create an annotated tag against a commit with a message. Then using the -f option, I update / change the message against the same commit.
Tag has same name, points to the same commit but message is changed. There is a new tag object according to the return text.
Is it possible to look at the history of the tag as it changed?
And is changing the tag message whilst pointing to the same commit going to cause problems if the tag with original message had already been shared?
Regards