Skip to content

Instantly share code, notes, and snippets.

@h4n2k
Created January 8, 2020 08:15
Show Gist options
  • Save h4n2k/4fe204d72468bb9d147741c1572a23d8 to your computer and use it in GitHub Desktop.
Save h4n2k/4fe204d72468bb9d147741c1572a23d8 to your computer and use it in GitHub Desktop.
Git Delete Local and Remote Tags
Delete a local Git tag
$ git tag -d <tag_name>
Delete a remote Git tag
$ git push origin :refs/tags/<tag>
@h4n2k
Copy link
Author

h4n2k commented Jan 8, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment