Skip to content

Instantly share code, notes, and snippets.

@enetter
Created September 14, 2009 14:44
Show Gist options
  • Save enetter/186692 to your computer and use it in GitHub Desktop.
Save enetter/186692 to your computer and use it in GitHub Desktop.
Tagging with git
$ 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