git tag
http://git-scm.com/book/en/Git-Basics-Tagging
git add a tag
$ git tag -a v1.2 -m 'version 1.2'
git list tags
$ git tag
git push
$ git push origin --tags
http://git-scm.com/book/en/Git-Basics-Tagging
git add a tag
$ git tag -a v1.2 -m 'version 1.2'git list tags
$ git taggit push
$ git push origin --tags