Created
November 25, 2017 10:16
-
-
Save daserzw/38cb275de53996cd4a3ed42b160eb4f7 to your computer and use it in GitHub Desktop.
GIT CHEATSHEET
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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