Created
September 14, 2009 14:44
-
-
Save enetter/186692 to your computer and use it in GitHub Desktop.
Tagging with git
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 -a -m "tagging version 1.0" 1.0 | |
Use git-push with the —tags option to push them to the remote (github in this case). | |
$ git push --tags | |
You can also push a single tag: | |
$ git push origin tag name-of-tag |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment