This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create new from old | |
git tag new old | |
# Remove old tag | |
git tag -d old | |
# Sync changes from old tag to remote | |
git push origin :refs/tags/old |