git tagging:
*Create and push tags in GIT
Create a tag:
git tag < tagname >
This will create a local tag with the current state of the branch you are on.
git tag tag-name commit-identifier
This will create a local tag with the commit-identifier of the branch you are on.
Push a commit in GIT:
git push origin tag-name
git push origin --tags