I want git to list all tags along with the full commit message. Something like this is close:
git tag -n5
This does exactly what I want except that it will only show up to the first 5 lines of the tag message.
I guess I can just use a very large number. What is the highest number I can use here? Is it the same on every computer?