mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-15 02:48:40 +00:00
Update cheatsheets
This commit is contained in:
@@ -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`
|
||||
|
||||
Reference in New Issue
Block a user