what is a git tag code example
Example 1: git choose tag
git checkout tags/1.1.4
Example 2: git see tags
$ git tag -l -n2
Example 3: git tag from commit
$ git tag <tag_name> HEAD (for the last commit)
Example 4: git find out commit for tag
$ git rev-list -n 1 $TAG