In my repository, I have created tags using the following commands.
git tag v1.0.0 -m \'finally a stable release\' git tag v2.0.0 -m \'oops, there was still
To see details about the latest available tag I sometimes use:
git show `git describe` --pretty=fuller