Update a Git Tag
Two main methods of updating a tag in git. Option one is to update the tag using the --force option. And option two is to simply delete the tag and recreate it.
git tag -f <tah>
git push origin <tag> --force
git tag -d <tag>
git push origin --delete <tag>
git tag <tag>
git push origin <tag>