1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-05 00:35:23 +02:00
tldr/pages/common/git-shortlog.md
Sebastiaan Speck 380fd5d441
pages*: convert long-short to short-long syntax (#13567)
* pages*: convert long-short to short-long syntax

* git-add: fix typo
2024-09-03 06:13:42 +05:30

28 lines
845 B
Markdown

# 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`