I have a project that is using git and have tagged all the releases with a tag.
$ git tag v1.0.0 v1.0.1 v1.0.2 v1.0.3 v1.1.0
My goal is to list
There is no simple option in git tag command to do this. I found most convenient to run
git log --decorate=full
to list all commits including tags if there are some. For listing only commits that are tagged use
git log --decorate=full --simplify-by-decoration
For details use
git help log