Created
August 2, 2018 14:40
-
-
Save vctrtvfrrr/7cfc1e5aff4325e55601c73e89c88d8c to your computer and use it in GitHub Desktop.
Remove git tags local and remotely
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
# Delete remote tags | |
git push origin --delete $(git tag -l) | |
# Delete local tags | |
git tag -d $(git tag -l) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment