Update cheatsheets

This commit is contained in:
ivuorinen
2025-12-31 00:22:26 +00:00
parent 175e6fa7c5
commit 30cc3ddcd1
148 changed files with 228 additions and 183 deletions

View File

@@ -19,19 +19,19 @@ source: https://github.com/tldr-pages/tldr.git
- List a range of commits from the tag named `2.1.0` to now:
`git changelog {{[-l|--list]}} {{[-s|--start-tag]}} {{2.1.0}}`
`git changelog {{[-l|--list]}} {{[-s|--start-tag]}} 2.1.0`
- List pretty formatted range of commits between the tag `0.5.0` and the tag `1.0.0`:
`git changelog {{[-s|--start-tag]}} {{0.5.0}} {{[-f|--final-tag]}} {{1.0.0}}`
`git changelog {{[-s|--start-tag]}} 0.5.0 {{[-f|--final-tag]}} 1.0.0`
- List pretty formatted range of commits between the commit `0b97430` and the tag `1.0.0`:
`git changelog --start-commit {{0b97430}} {{[-f|--final-tag]}} {{1.0.0}}`
`git changelog --start-commit 0b97430 {{[-f|--final-tag]}} 1.0.0`
- Specify `CHANGELOG.md` as the output file:
`git changelog {{CHANGELOG.md}}`
`git changelog CHANGELOG.md`
- Replace contents of current changelog file entirely: