xxxxxxxxxx
git commit --author='Author Name <email@example.org>'
xxxxxxxxxx
# commits by author
git shortlog -s --author="authorName"
# for all authors
git shortlog -sn --all
xxxxxxxxxx
$ git config --global user.name "John Doe"
$ git config --global user.email "john@doe.org"