Howto: create a tag in git and have it show up in GitHub

First, create the tag:

git tag 1.0 -a

Next, push your tag to the remote repository:

git push --tags

Comments