First, create the tag:
The Howto: create a tag in git and have it show up in GitHub article by Aral Balkan, unless otherwise expressly stated, is licensed under a Creative Commons Attribution-Noncommercial 2.0 UK: England License.
git tag 1.0 -a
Next, push your tag to the remote repository:
git push --tags
The Howto: create a tag in git and have it show up in GitHub article by Aral Balkan, unless otherwise expressly stated, is licensed under a Creative Commons Attribution-Noncommercial 2.0 UK: England License.
For those of use who have managed to get by with commit messages (and github full text search of messages) why else would we want tags?
Thanks Aral