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 list tags I prefer:
git tag -n
The -n flag displays the first line of the annotation message along with the tag, or the first commit message line if the tag is not annotated.
-n
You can also do git tag -n5 to show the first 5 lines of the annotation.
git tag -n5