I have been asked to produce stats on our Git repository. We have some developers that appear to be unproductive lately and I was told to list the last N commits of a given author (and yes, I hate being forced to do that...).
I tried git log --author=Bob
which works well, but only on the current branch. I'd like to find all the last commits, in all existing branches.
How can I achieve that ?