I want git to list all tags along with the full annotation or commit message. Something like this is close:
git tag -n5
This does exactly w
It's far from pretty, but you could create a script or an alias that does something like this:
for c in $(git for-each-ref refs/tags/ --format='%(refname)'); do echo $c; git show --quiet "$c"; echo; done