This file contains hidden or 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 tag from commit: | |
git tag <tagname> | |
git push origin --tags | |
# Delete local and remote tag: | |
git push --delete origin <tagname> | |
git tag -d <tagname> |