How do I list the tag name, tag date and tag message for all tags?
It seems that git's separation of display logic for commits through git log
and tags through git tag
makes it difficult to list the tag name, the tag's date and the tag message.
I can show the tag date, name and commit message using git log --tags --show-notes --simplify-by-decoration --pretty="format:%ai %d %s"
I inspected http://opensource.apple.com/source/Git/Git-26/src/git-htmldocs/pretty-formats.txt but didn't see any option to show tag message.
I can show the tag name and 5 lines of tag message using git tag -n5
.
But to get all three pieces of info would appear to require gnarly scripting beyond my ability.