Skip to content

Instantly share code, notes, and snippets.

@viktorsteinwand
Last active October 22, 2015 08:36
Show Gist options
  • Save viktorsteinwand/88b789d36bb5e2ee4e19 to your computer and use it in GitHub Desktop.
Save viktorsteinwand/88b789d36bb5e2ee4e19 to your computer and use it in GitHub Desktop.
How to delete a remote git tag
If you have a tag named 'v1.0.1' then you need just do following:
git tag -d v1.0.1
git push origin :refs/tags/v1.0.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment