Skip to content

Instantly share code, notes, and snippets.

@tubbynl
Last active August 8, 2018 10:16
Show Gist options
  • Save tubbynl/0cad1c68431e5bcd6ee6516faf7379f0 to your computer and use it in GitHub Desktop.
Save tubbynl/0cad1c68431e5bcd6ee6516faf7379f0 to your computer and use it in GitHub Desktop.
git cheatsheet

Delete / remove tag

# delete remote tag
git push --delete origin 1.0
# delete local tag
git tag -d 1.0
# for all tags
git tag | xargs git push --delete origin
git tag | xargs git tag -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment