git shortlog
Summarizes git log output, grouping commits by author.
Syntax
git shortlog [<options>] [<revision-range>] [-- <path>...]
Options
- -s / --summary: Shows only the commit count per author
- -n / --numbered: Sorts by number of commits (descending)
- -e / --email: Shows the email address of each author
- --all: Includes all branches
- --no-merges: Excludes merge commits
Example
git shortlog git shortlog -sn git shortlog -sn --all --no-merges