git bisect start [bad] [good...]
Reset bisect state and start bisection
Arguments
Options
Name | Description |
---|
--term-new <term> | Specify the alias to mark commits as new during the bisect process |
--term-bad <term> | Specify the alias to mark commits as bad during the bisect process |
--term-good <term> | Specify the alias to mark commits as good during the bisect process |
--term-old <term> | Specify the alias to mark commits as old during the bisect process |
--no-checkout | Do not checkout the new working tree at each iteration of the bisection process. Instead just update a special reference named BISECT_HEAD to make it point to the commit that should be tested |
--first-parent | Follow only the first parent commit upon seeing a merge commit. In detecting regressions introduced through the merging of a branch, the merge commit will be identified as introduction of the bug and its ancestors will be ignored |
-- | Stop taking subcommand arguments and options. Starts taking paths to bisect |