@@ -16,11 +16,11 @@ DESCRIPTION
16
16
The command takes various subcommands, and different options depending
17
17
on the subcommand:
18
18
19
- git bisect start [--term-(new| bad)=<term-new> --term-(old| good)=<term-old>]
19
+ git bisect start [--term-(bad|new )=<term-new> --term-(good|old )=<term-old>]
20
20
[--no-checkout] [--first-parent] [<bad> [<good>...]] [--] [<paths>...]
21
21
git bisect (bad|new|<term-new>) [<rev>]
22
22
git bisect (good|old|<term-old>) [<rev>...]
23
- git bisect terms [--term-good | --term-bad]
23
+ git bisect terms [--term-( good|old) | --term-( bad|new) ]
24
24
git bisect skip [(<rev>|<range>)...]
25
25
git bisect reset [<commit>]
26
26
git bisect (visualize|view)
@@ -165,8 +165,10 @@ To get a reminder of the currently used terms, use
165
165
git bisect terms
166
166
------------------------------------------------
167
167
168
- You can get just the old (respectively new) term with `git bisect terms
169
- --term-old` or `git bisect terms --term-good`.
168
+ You can get just the old term with `git bisect terms --term-old`
169
+ or `git bisect terms --term-good`; `git bisect terms --term-new`
170
+ and `git bisect terms --term-bad` can be used to learn how to call
171
+ the commits more recent than the sought change.
170
172
171
173
If you would like to use your own terms instead of "bad"/"good" or
172
174
"new"/"old", you can choose any names you like (except existing bisect
0 commit comments