git log --author code example
Example 1: git commits by author
# commits by author
git shortlog -s --author="authorName"
# for all authors
git shortlog -sn --all
Example 2: git log by author
git log --author="Jon"
Example 3: git log grep
git log --all --grep='Build 0051'