logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Git Shortlog - Summarize Git Log Output | Online Free DevTools by Hexmos

Summarize Git log output with Git Shortlog. Analyze commit history and author contributions using the command line. Free online tool, no registration required.

git-shortlog

Summarizes the git log output. More information: https://git-scm.com/docs/git-shortlog.

  • View a summary of all the commits made, grouped alphabetically by author name:

git shortlog

  • View a summary of all the commits made, sorted by the number of commits made:

git shortlog {{[-n|--numbered]}}

  • View a summary of all the commits made, grouped by the committer identities (name and email):

git shortlog {{[-c|--committer]}}

  • View a summary of the last 5 commits (i.e. specify a revision range):

git shortlog HEAD~5..HEAD

  • View all users, emails and the number of commits in the current branch:

git shortlog {{[-s|--summary]}} {{[-n|--numbered]}} {{[-e|--email]}}

  • View all users, emails and the number of commits in all branches:

git shortlog {{[-s|--summary]}} {{[-n|--numbered]}} {{[-e|--email]}} --all

See Also