Skip to content

Instantly share code, notes, and snippets.

@cappie
Forked from wojtha/gist:1852991
Created October 5, 2018 22:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cappie/89dda6e60a1802a1b844e69309e82e6b to your computer and use it in GitHub Desktop.
Save cappie/89dda6e60a1802a1b844e69309e82e6b to your computer and use it in GitHub Desktop.
GIT: Remove tag from the remote repository
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