Git list all commits by a particular author

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

Internal References

Article Type

General