Created
January 18, 2016 08:54
-
-
Save WebDevJL/975a4ca1bdfd7c9af202 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
You just need to push an 'empty' reference to the remote tag name: | |
git push origin :tagname | |
Or, more expressively, use the --delete option: | |
git push --delete origin tagname | |
If you also need to delete the local tag, use: | |
git tag -d tagname |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment