Created
August 6, 2019 12:48
-
-
Save pardgroupadmin/78ebef13720c4392b70cb1ff73cf086d to your computer and use it in GitHub Desktop.
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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment