pages*: convert long-short to short-long syntax (#13567)

* pages*: convert long-short to short-long syntax

* git-add: fix typo
This commit is contained in:
Sebastiaan Speck
2024-09-03 02:43:42 +02:00
committed by GitHub
parent fb7d0ff4c6
commit 380fd5d441
24 changed files with 58 additions and 58 deletions

View File

@@ -9,11 +9,11 @@
- View a summary of all the commits made, sorted by the number of commits made:
`git shortlog {{--numbered|-n}}`
`git shortlog {{-n|--numbered}}`
- View a summary of all the commits made, grouped by the committer identities (name and email):
`git shortlog {{--committer|-c}}`
`git shortlog {{-c|--committer}}`
- View a summary of the last 5 commits (i.e. specify a revision range):
@@ -21,8 +21,8 @@
- View all users, emails and the number of commits in the current branch:
`git shortlog {{--summary|-s}} {{--numbered|-n}} {{--email|-e}}`
`git shortlog {{-s|--summary}} {{-n|--numbered}} {{-e|--email}}`
- View all users, emails and the number of commits in all branches:
`git shortlog {{--summary|-s}} {{--numbered|-n}} {{--email|-e}} --all`
`git shortlog {{-s|--summary}} {{-n|--numbered}} {{-e|--email}} --all`