create a tag for a commit from command line code example
Example: create a tag from a commit/branch
git tag -a version.number -m "Tag Message"
git push origin <tagname>
git tag -a version.number -m "Tag Message"
git push origin <tagname>