Skip to content

Instantly share code, notes, and snippets.

@aleksseven
Last active October 7, 2020 22:35
Show Gist options
  • Save aleksseven/eb5268c088131d0bd41e3abed4b5daac to your computer and use it in GitHub Desktop.
Save aleksseven/eb5268c088131d0bd41e3abed4b5daac to your computer and use it in GitHub Desktop.
#How to remove tag Local and Remote.
####################################
# delete local tag 'saaswwq'
git tag -d 12345
# delete remote tag 'saaswwq'
git push origin :refs/tags/12345
# alternative approach
git push --delete origin tagName
git tag -d tagName
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment