Skip to content

Instantly share code, notes, and snippets.

@bonyiii
Created July 1, 2011 12:08
Show Gist options
  • Select an option

  • Save bonyiii/1058416 to your computer and use it in GitHub Desktop.

Select an option

Save bonyiii/1058416 to your computer and use it in GitHub Desktop.
delete remote or local git tag
http://nathanhoad.net/how-to-delete-a-remote-git-tag
#remote
git tag -d 12345
git push origin :refs/tags/12345
#local
git tag -d v0.2_cucumber
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment