Skip to content

Instantly share code, notes, and snippets.

@daserzw
Created November 25, 2017 10:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daserzw/38cb275de53996cd4a3ed42b160eb4f7 to your computer and use it in GitHub Desktop.
Save daserzw/38cb275de53996cd4a3ed42b160eb4f7 to your computer and use it in GitHub Desktop.
GIT CHEATSHEET
# git tag
git tag -am "annotation goes here" tagname_goes_here # cut a tag
git tag -d tagname_goes_here # burn it
git tag -am "annotation goes here" tagname_goes_here # cut another tag
git push --tags # push tags to remote
git push origin :refs/tags/tagname_goes_here # delete tag from remote
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment