Update cheatsheets

This commit is contained in:
ivuorinen
2025-11-13 00:20:17 +00:00
parent 8b085234e1
commit 366b13ffac
31 changed files with 160 additions and 38 deletions

View File

@@ -25,6 +25,18 @@ source: https://github.com/tldr-pages/tldr.git
`git bisect skip`
- Start a bisect session considering only commits that modify a specific file or directory:
`git bisect start {{bad_commit}} {{good_commit}} -- {{path/to/file_or_directory}}`
- Automate the bisect process using a test script that `exit`s with 0 for "good" and non-zero for "bad" (script arguments are optional):
`git bisect run {{path/to/test_script}} {{script_arguments}}`
- Display a log of what has been done so far:
`git bisect log`
- Show remaining candidate commits to be checked:
`git bisect visualize`