Update cheatsheets

This commit is contained in:
ivuorinen
2025-03-08 00:14:59 +00:00
parent a812b3c467
commit f8bee5305f
111 changed files with 540 additions and 310 deletions

View File

@@ -14,11 +14,11 @@ source: https://github.com/tldr-pages/tldr.git
- View a summary of all the commits made, sorted by the number of commits made:
`git shortlog {{-n|--numbered}}`
`git shortlog {{[-n|--numbered]}}`
- View a summary of all the commits made, grouped by the committer identities (name and email):
`git shortlog {{-c|--committer}}`
`git shortlog {{[-c|--committer]}}`
- View a summary of the last 5 commits (i.e. specify a revision range):
@@ -26,8 +26,8 @@ source: https://github.com/tldr-pages/tldr.git
- View all users, emails and the number of commits in the current branch:
`git shortlog {{-s|--summary}} {{-n|--numbered}} {{-e|--email}}`
`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`
`git shortlog {{[-s|--summary]}} {{[-n|--numbered]}} {{[-e|--email]}} --all`