Checking tag messages code example
Example 1: git choose tag
git checkout tags/1.1.4
Example 2: git tag from commit
$ git tag <tag_name> HEAD (for the last commit)
git checkout tags/1.1.4
$ git tag <tag_name> HEAD (for the last commit)