Last active
October 7, 2020 22:35
-
-
Save aleksseven/eb5268c088131d0bd41e3abed4b5daac 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
#How to remove tag Local and Remote. | |
#################################### | |
# delete local tag 'saaswwq' | |
git tag -d 12345 | |
# delete remote tag 'saaswwq' | |
git push origin :refs/tags/12345 | |
# alternative approach | |
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