Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kreig303/0924b6d43c6b6295a1e4c9df8a858deb to your computer and use it in GitHub Desktop.
Save kreig303/0924b6d43c6b6295a1e4c9df8a858deb to your computer and use it in GitHub Desktop.
how to delete a git tag locally and remote
# delete local tag
git tag -d tagName
# delete remote tag
git push origin :refs/tags/tagName
# or
git push --delete origin tagName
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment