git check log of specific 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: how to see shorthand version of git log
git log --oneline