Skip to content

Instantly share code, notes, and snippets.

@chrismitchell
Created May 30, 2014 20:33
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 chrismitchell/f9df288f8ea652901747 to your computer and use it in GitHub Desktop.
Save chrismitchell/f9df288f8ea652901747 to your computer and use it in GitHub Desktop.
Deleting tags on origin (not upstream)
If you have a tag named '12345' then you would just do this:
git tag -d 12345 (local)
git push origin :refs/tags/12345 (on Github)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment