Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

33
tldr/git-shortlog Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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`
- 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`