create tag in a specific commit in git? 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>