command git tag release version code example
Example 1: create a tag from a commit/branch
git tag -a version.number -m "Tag Message"
git push origin <tagname>
Example 2: lightweight tag git
$ git tag -a v1.0.0
git tag -a version.number -m "Tag Message"
git push origin <tagname>
$ git tag -a v1.0.0