How to get git to show commits in a specified date range for author date?

Maybe I’m missing something, but wouldn’t this be enough?

git log --pretty=format:"%ad - %an: %s" --after="2016-01-31" --until="2017-03-10" --author="John Doe"

See also here

Leave a Comment