Forrest logo
back to context overview

git-shortlog

List of commands for git-shortlog:

  • git-shortlog:tldr:3e708 git-shortlog: View all users, emails and the number of commits in the current branch.
    $ git shortlog -sne
    try on your machine
    explain this command
  • git-shortlog:tldr:907f5 git-shortlog: View a summary of all the commits made, grouped alphabetically by author name.
    $ git shortlog
    try on your machine
    explain this command
  • git-shortlog:tldr:93a5b git-shortlog: View all users, emails and the number of commits in all branches.
    $ git shortlog -sne --all
    try on your machine
    explain this command
  • git-shortlog:tldr:bc689 git-shortlog: View a summary of all the commits made, sorted by the number of commits made.
    $ git shortlog -n
    try on your machine
    explain this command
  • git-shortlog:tldr:c97d4 git-shortlog: View a summary of all the commits made, grouped by the committer identities (name and email).
    $ git shortlog -c
    try on your machine
    explain this command
back to context overview