Here’s how you move git tags that have already been pushed to a remote repository.
git pull # to marge changes from others git tag -d v0.99 # delete the tag git push origin :refs/tags/v0.99 # this remove tag from remote repository git tag v0.99 # this mark the most recent commit git push origin v0.99 # push a new tag position to remote repository