git see tags code example
Example 1: git see tags
$ git tag -l -n2
Example 2: git find out commit for tag
$ git rev-list -n 1 $TAG
Example 3: git create tag and push
git tag <tagname>
$ git tag -l -n2
$ git rev-list -n 1 $TAG
git tag <tagname>