Created
February 17, 2012 12:08
-
-
Save wojtha/1852991 to your computer and use it in GitHub Desktop.
GIT: Remove tag from the remote repository
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
git tag -d 12345 | |
git push origin :refs/tags/12345 | |
/* That will remove '12345' from the remote repository. */ | |
/* http://nathanhoad.net/how-to-delete-a-remote-git-tag */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment