Sep 9th, 2020
The following example will find all git commits by a particular author:
git log --pretty=format:"%cn %h %cd %s %b" --author="loopduplicate"
The next example will find all git commits except merge commits made by a particular author:
git log --pretty=format:"%cn %h %cd %s %b" --author="loopduplicate" --no-merges