git tag -d <tagname> # delete the old tag locallygit push origin :refs/tags/<tagname> # delete the old tag remotelygit tag <tagname> <commitId> # make a new tag locallygit push origin <tagname> # push the new local tag to the remote
git tag -d fix123 # delete the old local taggit push github :fix123 # delete the old remote tag (use for each affected remote)git tag fix123 790a621265 # create a new local taggit push github fix123 # push new tag to remote (use for each affected remote)