Is it possible to use git shortlog for showing the full commits bodies?
I want the output to be:
$ git shortlog
John Doe (2):
Commit title
commit body
Commit title
commit body
No success for doing so using the --format flag.
--format=%B just just stays the same, and --format=%b gives only the first line of body.