git shortlog
Summarizes the git log
output.
=> More information.
- 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
- View a summary of all the commits made, grouped by the committer identities (name and email):
git shortlog -c
- 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 -sne
- View all users, emails and the number of commits in all branches:
git shortlog -sne --all
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).
=> CC-BY
Proxy Information
- Original URL
- gemini://freeshell.de/tldr/git-shortlog.gmi
- Status Code
- Success (20)
- Meta
text/gemini;lang=en-GB
- Capsule Response Time
- 103.883412 milliseconds
- Gemini-to-HTML Time
- 0.51126 milliseconds
This content has been proxied by September (ba2dc).