Created
March 28, 2014 02:18
-
-
Save ricardodantas/9823787 to your computer and use it in GitHub Desktop.
Git delete tag from remote.
---
From http://nathanhoad.net/how-to-delete-a-remote-git-tag
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! I used this link too: http://nathanhoad.net/how-to-delete-a-remote-git-tag
:-D