Commit | Line | Data |
---|---|---|
8cc6a083 | 1 | #!/bin/sh |
d025524d | 2 | |
21b55e33 | 3 | USAGE='[help|start|bad|good|new|old|terms|skip|next|reset|visualize|replay|log|run]' |
243a60fb | 4 | LONG_USAGE='git bisect help |
6021be86 | 5 | print this long help message. |
4796e823 | 6 | git bisect start [--no-checkout] [<bad> [<good>...]] [--] [<pathspec>...] |
6021be86 | 7 | reset bisect state and start bisection. |
21e5cfd8 AD |
8 | git bisect (bad|new) [<rev>] |
9 | mark <rev> a known-bad revision/ | |
10 | a revision after change in a given property. | |
11 | git bisect (good|old) [<rev>...] | |
12 | mark <rev>... known-good revisions/ | |
13 | revisions before change in a given property. | |
21b55e33 MM |
14 | git bisect terms [--term-good | --term-bad] |
15 | show the terms used for old and new commits (default: bad, good) | |
5413812f | 16 | git bisect skip [(<rev>|<range>)...] |
6021be86 | 17 | mark <rev>... untestable revisions. |
38a47fd6 | 18 | git bisect next |
6021be86 | 19 | find next bisection to test and check it out. |
6b87ce23 | 20 | git bisect reset [<commit>] |
6021be86 | 21 | finish bisection search and go back to commit. |
38a47fd6 | 22 | git bisect visualize |
6021be86 | 23 | show bisect status in gitk. |
38a47fd6 | 24 | git bisect replay <logfile> |
6021be86 | 25 | replay bisection log. |
38a47fd6 | 26 | git bisect log |
6021be86 | 27 | show bisect log. |
38a47fd6 | 28 | git bisect run <cmd>... |
6021be86 | 29 | use <cmd>... to automatically bisect. |
243a60fb CC |
30 | |
31 | Please use "git help bisect" to get the full man page.' | |
d025524d | 32 | |
8f321a39 | 33 | OPTIONS_SPEC= |
ae2b0f15 | 34 | . git-sh-setup |
dcf9c2e5 | 35 | . git-sh-i18n |
8cc6a083 | 36 | |
ce32660e JS |
37 | _x40='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]' |
38 | _x40="$_x40$_x40$_x40$_x40$_x40$_x40$_x40$_x40" | |
43f9d9f3 AD |
39 | TERM_BAD=bad |
40 | TERM_GOOD=good | |
ce32660e | 41 | |
4796e823 JS |
42 | bisect_head() |
43 | { | |
44 | if test -f "$GIT_DIR/BISECT_HEAD" | |
45 | then | |
46 | echo BISECT_HEAD | |
47 | else | |
48 | echo HEAD | |
49 | fi | |
50 | } | |
51 | ||
8cc6a083 | 52 | bisect_autostart() { |
823ea121 | 53 | test -s "$GIT_DIR/BISECT_START" || { |
3145b1a2 | 54 | gettextln "You need to start by \"git bisect start\"" >&2 |
8cc6a083 LT |
55 | if test -t 0 |
56 | then | |
04de0996 ÆAB |
57 | # TRANSLATORS: Make sure to include [Y] and [n] in your |
58 | # translation. The program will only accept English input | |
59 | # at this point. | |
6021be86 | 60 | gettext "Do you want me to do it for you [Y/n]? " >&2 |
8cc6a083 LT |
61 | read yesno |
62 | case "$yesno" in | |
63 | [Nn]*) | |
64 | exit ;; | |
65 | esac | |
66 | bisect_start | |
67 | else | |
68 | exit 1 | |
69 | fi | |
70 | } | |
71 | } | |
72 | ||
73 | bisect_start() { | |
4764f464 JS |
74 | # |
75 | # Check for one bad and then some good revisions. | |
76 | # | |
77 | has_double_dash=0 | |
78 | for arg; do | |
6021be86 | 79 | case "$arg" in --) has_double_dash=1; break ;; esac |
4764f464 JS |
80 | done |
81 | orig_args=$(git rev-parse --sq-quote "$@") | |
82 | bad_seen=0 | |
83 | eval='' | |
cb46d630 | 84 | must_write_terms=0 |
4a6ada32 | 85 | revs='' |
24c51280 JS |
86 | if test "z$(git rev-parse --is-bare-repository)" != zfalse |
87 | then | |
88 | mode=--no-checkout | |
89 | else | |
90 | mode='' | |
91 | fi | |
4764f464 | 92 | while [ $# -gt 0 ]; do |
6021be86 JS |
93 | arg="$1" |
94 | case "$arg" in | |
95 | --) | |
96 | shift | |
97 | break | |
4764f464 | 98 | ;; |
6021be86 JS |
99 | --no-checkout) |
100 | mode=--no-checkout | |
101 | shift ;; | |
102 | --*) | |
103 | die "$(eval_gettext "unrecognised option: '\$arg'")" ;; | |
104 | *) | |
105 | rev=$(git rev-parse -q --verify "$arg^{commit}") || { | |
43b8ff4b JH |
106 | test $has_double_dash -eq 1 && |
107 | die "$(eval_gettext "'\$arg' does not appear to be a valid revision")" | |
108 | break | |
6021be86 | 109 | } |
4a6ada32 | 110 | revs="$revs $rev" |
6021be86 JS |
111 | shift |
112 | ;; | |
4764f464 | 113 | esac |
4764f464 JS |
114 | done |
115 | ||
4a6ada32 MM |
116 | for rev in $revs |
117 | do | |
118 | # The user ran "git bisect start <sha1> | |
119 | # <sha1>", hence did not explicitly specify | |
120 | # the terms, but we are already starting to | |
121 | # set references named with the default terms, | |
122 | # and won't be able to change afterwards. | |
123 | must_write_terms=1 | |
124 | ||
125 | case $bad_seen in | |
126 | 0) state=$TERM_BAD ; bad_seen=1 ;; | |
127 | *) state=$TERM_GOOD ;; | |
128 | esac | |
129 | eval="$eval bisect_write '$state' '$rev' 'nolog' &&" | |
130 | done | |
8cc6a083 | 131 | # |
634f2464 | 132 | # Verify HEAD. |
8cc6a083 | 133 | # |
48949a18 | 134 | head=$(GIT_DIR="$GIT_DIR" git symbolic-ref -q HEAD) || |
ce32660e | 135 | head=$(GIT_DIR="$GIT_DIR" git rev-parse --verify HEAD) || |
9570fc1e | 136 | die "$(gettext "Bad HEAD - I need a HEAD")" |
634f2464 | 137 | |
ee831f7d | 138 | # |
634f2464 | 139 | # Check if we are bisecting. |
ee831f7d | 140 | # |
d3e54c88 | 141 | start_head='' |
634f2464 CC |
142 | if test -s "$GIT_DIR/BISECT_START" |
143 | then | |
144 | # Reset to the rev from where we started. | |
9d0cd91c | 145 | start_head=$(cat "$GIT_DIR/BISECT_START") |
4796e823 JS |
146 | if test "z$mode" != "z--no-checkout" |
147 | then | |
1acf1171 | 148 | git checkout "$start_head" -- || |
9c9b4f2f | 149 | die "$(eval_gettext "Checking out '\$start_head' failed. Try 'git bisect reset <valid-branch>'.")" |
4796e823 | 150 | fi |
634f2464 CC |
151 | else |
152 | # Get rev from where we start. | |
153 | case "$head" in | |
154 | refs/heads/*|$_x40) | |
155 | # This error message should only be triggered by | |
156 | # cogito usage, and cogito users should understand | |
157 | # it relates to cg-seek. | |
158 | [ -s "$GIT_DIR/head-name" ] && | |
382d20e3 | 159 | die "$(gettext "won't bisect on cg-seek'ed tree")" |
634f2464 CC |
160 | start_head="${head#refs/heads/}" |
161 | ;; | |
162 | *) | |
9570fc1e | 163 | die "$(gettext "Bad HEAD - strange symbolic ref")" |
634f2464 CC |
164 | ;; |
165 | esac | |
166 | fi | |
8cc6a083 LT |
167 | |
168 | # | |
634f2464 | 169 | # Get rid of any old bisect state. |
8cc6a083 | 170 | # |
823ea121 | 171 | bisect_clean_state || exit |
38a47fd6 | 172 | |
ba963de8 CC |
173 | # |
174 | # Change state. | |
175 | # In case of mistaken revs or checkout error, or signals received, | |
176 | # "bisect_auto_next" below may exit or misbehave. | |
177 | # We have to trap this to be able to clean up using | |
178 | # "bisect_clean_state". | |
179 | # | |
180 | trap 'bisect_clean_state' 0 | |
181 | trap 'exit 255' 1 2 3 15 | |
182 | ||
183 | # | |
184 | # Write new start state. | |
185 | # | |
4796e823 JS |
186 | echo "$start_head" >"$GIT_DIR/BISECT_START" && { |
187 | test "z$mode" != "z--no-checkout" || | |
188 | git update-ref --no-deref BISECT_HEAD "$start_head" | |
189 | } && | |
de52f5a8 | 190 | git rev-parse --sq-quote "$@" >"$GIT_DIR/BISECT_NAMES" && |
6ba7acff | 191 | eval "$eval true" && |
cb46d630 AD |
192 | if test $must_write_terms -eq 1 |
193 | then | |
194 | write_terms "$TERM_BAD" "$TERM_GOOD" | |
195 | fi && | |
6c98c054 | 196 | echo "git bisect start$orig_args" >>"$GIT_DIR/BISECT_LOG" || exit |
ba963de8 CC |
197 | # |
198 | # Check if we can proceed to the next bisect state. | |
199 | # | |
38a47fd6 | 200 | bisect_auto_next |
ba963de8 CC |
201 | |
202 | trap '-' 0 | |
8cc6a083 LT |
203 | } |
204 | ||
55624f9a CC |
205 | bisect_write() { |
206 | state="$1" | |
207 | rev="$2" | |
737c74ee | 208 | nolog="$3" |
55624f9a | 209 | case "$state" in |
43f9d9f3 AD |
210 | "$TERM_BAD") |
211 | tag="$state" ;; | |
212 | "$TERM_GOOD"|skip) | |
213 | tag="$state"-"$rev" ;; | |
214 | *) | |
215 | die "$(eval_gettext "Bad bisect_write argument: \$state")" ;; | |
55624f9a | 216 | esac |
ba963de8 | 217 | git update-ref "refs/bisect/$tag" "$rev" || exit |
f454cdc4 | 218 | echo "# $state: $(git show-branch $rev)" >>"$GIT_DIR/BISECT_LOG" |
6c98c054 | 219 | test -n "$nolog" || echo "git bisect $state $rev" >>"$GIT_DIR/BISECT_LOG" |
55624f9a CC |
220 | } |
221 | ||
c9c4e2d5 CC |
222 | is_expected_rev() { |
223 | test -f "$GIT_DIR/BISECT_EXPECTED_REV" && | |
224 | test "$1" = $(cat "$GIT_DIR/BISECT_EXPECTED_REV") | |
225 | } | |
226 | ||
c9c4e2d5 CC |
227 | check_expected_revs() { |
228 | for _rev in "$@"; do | |
eef12a9a JS |
229 | if ! is_expected_rev "$_rev" |
230 | then | |
c9c4e2d5 CC |
231 | rm -f "$GIT_DIR/BISECT_ANCESTORS_OK" |
232 | rm -f "$GIT_DIR/BISECT_EXPECTED_REV" | |
233 | return | |
234 | fi | |
235 | done | |
236 | } | |
237 | ||
ee2314f5 | 238 | bisect_skip() { |
6021be86 | 239 | all='' |
ee2314f5 CC |
240 | for arg in "$@" |
241 | do | |
6021be86 JS |
242 | case "$arg" in |
243 | *..*) | |
244 | revs=$(git rev-list "$arg") || die "$(eval_gettext "Bad rev input: \$arg")" ;; | |
245 | *) | |
246 | revs=$(git rev-parse --sq-quote "$arg") ;; | |
247 | esac | |
248 | all="$all $revs" | |
249 | done | |
250 | eval bisect_state 'skip' $all | |
ee2314f5 CC |
251 | } |
252 | ||
155fc795 | 253 | bisect_state() { |
8cc6a083 | 254 | bisect_autostart |
155fc795 | 255 | state=$1 |
cb46d630 | 256 | check_and_set_terms $state |
155fc795 CC |
257 | case "$#,$state" in |
258 | 0,*) | |
9570fc1e | 259 | die "$(gettext "Please call 'bisect_state' with at least one argument.")" ;; |
43f9d9f3 | 260 | 1,"$TERM_BAD"|1,"$TERM_GOOD"|1,skip) |
4796e823 JS |
261 | rev=$(git rev-parse --verify $(bisect_head)) || |
262 | die "$(gettext "Bad rev input: $(bisect_head)")" | |
c9c4e2d5 CC |
263 | bisect_write "$state" "$rev" |
264 | check_expected_revs "$rev" ;; | |
43f9d9f3 | 265 | 2,"$TERM_BAD"|*,"$TERM_GOOD"|*,skip) |
155fc795 | 266 | shift |
6bc02d56 | 267 | hash_list='' |
e3389075 | 268 | for rev in "$@" |
155fc795 | 269 | do |
a179a303 | 270 | sha=$(git rev-parse --verify "$rev^{commit}") || |
15eaa049 | 271 | die "$(eval_gettext "Bad rev input: \$rev")" |
6bc02d56 | 272 | hash_list="$hash_list $sha" |
d3e54c88 | 273 | done |
6bc02d56 CC |
274 | for rev in $hash_list |
275 | do | |
276 | bisect_write "$state" "$rev" | |
277 | done | |
278 | check_expected_revs $hash_list ;; | |
43f9d9f3 AD |
279 | *,"$TERM_BAD") |
280 | die "$(eval_gettext "'git bisect \$TERM_BAD' can take only one argument.")" ;; | |
cc9f24d0 JH |
281 | *) |
282 | usage ;; | |
8cc6a083 | 283 | esac |
97e1c51e CC |
284 | bisect_auto_next |
285 | } | |
286 | ||
8cc6a083 | 287 | bisect_next_check() { |
0a5280a9 | 288 | missing_good= missing_bad= |
43f9d9f3 AD |
289 | git show-ref -q --verify refs/bisect/$TERM_BAD || missing_bad=t |
290 | test -n "$(git for-each-ref "refs/bisect/$TERM_GOOD-*")" || missing_good=t | |
6fecf191 | 291 | |
0a5280a9 JH |
292 | case "$missing_good,$missing_bad,$1" in |
293 | ,,*) | |
43f9d9f3 | 294 | : have both $TERM_GOOD and $TERM_BAD - ok |
0a5280a9 JH |
295 | ;; |
296 | *,) | |
297 | # do not have both but not asked to fail - just report. | |
298 | false | |
299 | ;; | |
43f9d9f3 | 300 | t,,"$TERM_GOOD") |
21e5cfd8 | 301 | # have bad (or new) but not good (or old). we could bisect although |
0a5280a9 | 302 | # this is less optimum. |
43f9d9f3 | 303 | eval_gettextln "Warning: bisecting only with a \$TERM_BAD commit." >&2 |
0a5280a9 JH |
304 | if test -t 0 |
305 | then | |
04de0996 ÆAB |
306 | # TRANSLATORS: Make sure to include [Y] and [n] in your |
307 | # translation. The program will only accept English input | |
308 | # at this point. | |
309 | gettext "Are you sure [Y/n]? " >&2 | |
e5d3afd7 FM |
310 | read yesno |
311 | case "$yesno" in [Nn]*) exit 1 ;; esac | |
0a5280a9 | 312 | fi |
43f9d9f3 | 313 | : bisect without $TERM_GOOD... |
0a5280a9 | 314 | ;; |
8cc6a083 | 315 | *) |
cb46d630 AD |
316 | bad_syn=$(bisect_voc bad) |
317 | good_syn=$(bisect_voc good) | |
be508d3a ÆAB |
318 | if test -s "$GIT_DIR/BISECT_START" |
319 | then | |
cb46d630 AD |
320 | |
321 | eval_gettextln "You need to give me at least one \$bad_syn and one \$good_syn revision. | |
322 | (You can use \"git bisect \$bad_syn\" and \"git bisect \$good_syn\" for that.)" >&2 | |
be508d3a | 323 | else |
cb46d630 AD |
324 | eval_gettextln "You need to start by \"git bisect start\". |
325 | You then need to give me at least one \$good_syn and one \$bad_syn revision. | |
326 | (You can use \"git bisect \$bad_syn\" and \"git bisect \$good_syn\" for that.)" >&2 | |
be508d3a | 327 | fi |
0a5280a9 | 328 | exit 1 ;; |
8cc6a083 LT |
329 | esac |
330 | } | |
331 | ||
332 | bisect_auto_next() { | |
434d036f | 333 | bisect_next_check && bisect_next || : |
8cc6a083 LT |
334 | } |
335 | ||
336 | bisect_next() { | |
8fe26f44 | 337 | case "$#" in 0) ;; *) usage ;; esac |
8cc6a083 | 338 | bisect_autostart |
43f9d9f3 | 339 | bisect_next_check $TERM_GOOD |
0a5280a9 | 340 | |
0871984d | 341 | # Perform all bisection computation, display and checkout |
4796e823 | 342 | git bisect--helper --next-all $(test -f "$GIT_DIR/BISECT_HEAD" && echo --no-checkout) |
5a1d31c7 | 343 | res=$? |
0a5280a9 | 344 | |
6021be86 | 345 | # Check if we should exit because bisection is finished |
a7f8b8ac TH |
346 | if test $res -eq 10 |
347 | then | |
43f9d9f3 | 348 | bad_rev=$(git show-ref --hash --verify refs/bisect/$TERM_BAD) |
a7f8b8ac | 349 | bad_commit=$(git show-branch $bad_rev) |
43f9d9f3 | 350 | echo "# first $TERM_BAD commit: $bad_commit" >>"$GIT_DIR/BISECT_LOG" |
a7f8b8ac | 351 | exit 0 |
f989cac9 TH |
352 | elif test $res -eq 2 |
353 | then | |
354 | echo "# only skipped commits left to test" >>"$GIT_DIR/BISECT_LOG" | |
43f9d9f3 AD |
355 | good_revs=$(git for-each-ref --format="%(objectname)" "refs/bisect/$TERM_GOOD-*") |
356 | for skipped in $(git rev-list refs/bisect/$TERM_BAD --not $good_revs) | |
f989cac9 TH |
357 | do |
358 | skipped_commit=$(git show-branch $skipped) | |
43f9d9f3 | 359 | echo "# possible first $TERM_BAD commit: $skipped_commit" >>"$GIT_DIR/BISECT_LOG" |
f989cac9 TH |
360 | done |
361 | exit $res | |
a7f8b8ac | 362 | fi |
0a5280a9 | 363 | |
5a1d31c7 CC |
364 | # Check for an error in the bisection process |
365 | test $res -ne 0 && exit $res | |
366 | ||
367 | return 0 | |
8cc6a083 LT |
368 | } |
369 | ||
cc9f24d0 JH |
370 | bisect_visualize() { |
371 | bisect_next_check fail | |
235997c9 JH |
372 | |
373 | if test $# = 0 | |
374 | then | |
c4e4644e | 375 | if test -n "${DISPLAY+set}${SESSIONNAME+set}${MSYSTEM+set}${SECURITYSESSIONID+set}" && |
43b8ff4b | 376 | type gitk >/dev/null 2>&1 |
eef12a9a | 377 | then |
c4e4644e JK |
378 | set gitk |
379 | else | |
380 | set git log | |
381 | fi | |
235997c9 JH |
382 | else |
383 | case "$1" in | |
384 | git*|tig) ;; | |
385 | -*) set git log "$@" ;; | |
386 | *) set git "$@" ;; | |
387 | esac | |
388 | fi | |
389 | ||
fc13aa3d | 390 | eval '"$@"' --bisect -- $(cat "$GIT_DIR/BISECT_NAMES") |
cc9f24d0 JH |
391 | } |
392 | ||
8cc6a083 | 393 | bisect_reset() { |
823ea121 | 394 | test -s "$GIT_DIR/BISECT_START" || { |
3145b1a2 | 395 | gettextln "We are not bisecting." |
fce0499f CC |
396 | return |
397 | } | |
8cc6a083 | 398 | case "$#" in |
823ea121 | 399 | 0) branch=$(cat "$GIT_DIR/BISECT_START") ;; |
305a233c | 400 | 1) git rev-parse --quiet --verify "$1^{commit}" >/dev/null || { |
6021be86 JS |
401 | invalid="$1" |
402 | die "$(eval_gettext "'\$invalid' is not a valid commit")" | |
403 | } | |
404 | branch="$1" ;; | |
8fe26f44 | 405 | *) |
6021be86 | 406 | usage ;; |
8cc6a083 | 407 | esac |
43b8ff4b JH |
408 | |
409 | if ! test -f "$GIT_DIR/BISECT_HEAD" && ! git checkout "$branch" -- | |
4796e823 | 410 | then |
43b8ff4b | 411 | die "$(eval_gettext "Could not check out original HEAD '\$branch'. |
15eaa049 | 412 | Try 'git bisect reset <commit>'.")" |
3bb8cf88 | 413 | fi |
4796e823 | 414 | bisect_clean_state |
e204de28 JH |
415 | } |
416 | ||
38a47fd6 | 417 | bisect_clean_state() { |
947a604b | 418 | # There may be some refs packed during bisection. |
634f2464 | 419 | git for-each-ref --format='%(refname) %(objectname)' refs/bisect/\* | |
947a604b CC |
420 | while read ref hash |
421 | do | |
823ea121 | 422 | git update-ref -d $ref $hash || exit |
947a604b | 423 | done |
c9c4e2d5 CC |
424 | rm -f "$GIT_DIR/BISECT_EXPECTED_REV" && |
425 | rm -f "$GIT_DIR/BISECT_ANCESTORS_OK" && | |
823ea121 CC |
426 | rm -f "$GIT_DIR/BISECT_LOG" && |
427 | rm -f "$GIT_DIR/BISECT_NAMES" && | |
428 | rm -f "$GIT_DIR/BISECT_RUN" && | |
cb46d630 | 429 | rm -f "$GIT_DIR/BISECT_TERMS" && |
9d0cd91c | 430 | # Cleanup head-name if it got left by an old version of git-bisect |
823ea121 | 431 | rm -f "$GIT_DIR/head-name" && |
4796e823 JS |
432 | git update-ref -d --no-deref BISECT_HEAD && |
433 | # clean up BISECT_START last | |
823ea121 | 434 | rm -f "$GIT_DIR/BISECT_START" |
38a47fd6 CC |
435 | } |
436 | ||
e204de28 | 437 | bisect_replay () { |
55a9fc80 ÆAB |
438 | file="$1" |
439 | test "$#" -eq 1 || die "$(gettext "No logfile given")" | |
440 | test -r "$file" || die "$(eval_gettext "cannot read \$file for replaying")" | |
e204de28 | 441 | bisect_reset |
6c98c054 | 442 | while read git bisect command rev |
e204de28 | 443 | do |
c82af12a | 444 | test "$git $bisect" = "git bisect" || test "$git" = "git-bisect" || continue |
eef12a9a JS |
445 | if test "$git" = "git-bisect" |
446 | then | |
6c98c054 MV |
447 | rev="$command" |
448 | command="$bisect" | |
449 | fi | |
cb46d630 AD |
450 | get_terms |
451 | check_and_set_terms "$command" | |
e204de28 JH |
452 | case "$command" in |
453 | start) | |
e9a45d75 | 454 | cmd="bisect_start $rev" |
737c74ee | 455 | eval "$cmd" ;; |
cb46d630 | 456 | "$TERM_GOOD"|"$TERM_BAD"|skip) |
737c74ee | 457 | bisect_write "$command" "$rev" ;; |
21b55e33 MM |
458 | terms) |
459 | bisect_terms $rev ;; | |
e204de28 | 460 | *) |
9570fc1e | 461 | die "$(gettext "?? what are you talking about?")" ;; |
e204de28 | 462 | esac |
55a9fc80 | 463 | done <"$file" |
e204de28 | 464 | bisect_auto_next |
8cc6a083 LT |
465 | } |
466 | ||
a17c4101 | 467 | bisect_run () { |
6021be86 JS |
468 | bisect_next_check fail |
469 | ||
470 | while true | |
471 | do | |
472 | command="$@" | |
3145b1a2 | 473 | eval_gettextln "running \$command" |
6021be86 JS |
474 | "$@" |
475 | res=$? | |
476 | ||
477 | # Check for really bad run error. | |
eef12a9a JS |
478 | if [ $res -lt 0 -o $res -ge 128 ] |
479 | then | |
3145b1a2 JS |
480 | eval_gettextln "bisect run failed: |
481 | exit code \$res from '\$command' is < 0 or >= 128" >&2 | |
6021be86 JS |
482 | exit $res |
483 | fi | |
484 | ||
485 | # Find current state depending on run success or failure. | |
486 | # A special exit code of 125 means cannot test. | |
eef12a9a JS |
487 | if [ $res -eq 125 ] |
488 | then | |
6021be86 | 489 | state='skip' |
eef12a9a JS |
490 | elif [ $res -gt 0 ] |
491 | then | |
43f9d9f3 | 492 | state="$TERM_BAD" |
6021be86 | 493 | else |
43f9d9f3 | 494 | state="$TERM_GOOD" |
6021be86 JS |
495 | fi |
496 | ||
497 | # We have to use a subshell because "bisect_state" can exit. | |
305a233c | 498 | ( bisect_state $state >"$GIT_DIR/BISECT_RUN" ) |
6021be86 JS |
499 | res=$? |
500 | ||
501 | cat "$GIT_DIR/BISECT_RUN" | |
502 | ||
43f9d9f3 | 503 | if sane_grep "first $TERM_BAD commit could be any of" "$GIT_DIR/BISECT_RUN" \ |
305a233c | 504 | >/dev/null |
eef12a9a | 505 | then |
3145b1a2 | 506 | gettextln "bisect run cannot continue any more" >&2 |
6021be86 JS |
507 | exit $res |
508 | fi | |
509 | ||
eef12a9a JS |
510 | if [ $res -ne 0 ] |
511 | then | |
3145b1a2 JS |
512 | eval_gettextln "bisect run failed: |
513 | 'bisect_state \$state' exited with error code \$res" >&2 | |
6021be86 JS |
514 | exit $res |
515 | fi | |
a17c4101 | 516 | |
43f9d9f3 | 517 | if sane_grep "is the first $TERM_BAD commit" "$GIT_DIR/BISECT_RUN" >/dev/null |
eef12a9a | 518 | then |
3145b1a2 | 519 | gettextln "bisect run success" |
6021be86 JS |
520 | exit 0; |
521 | fi | |
a17c4101 | 522 | |
6021be86 | 523 | done |
a17c4101 CC |
524 | } |
525 | ||
412ff738 | 526 | bisect_log () { |
9570fc1e | 527 | test -s "$GIT_DIR/BISECT_LOG" || die "$(gettext "We are not bisecting.")" |
412ff738 SG |
528 | cat "$GIT_DIR/BISECT_LOG" |
529 | } | |
a17c4101 | 530 | |
cb46d630 AD |
531 | get_terms () { |
532 | if test -s "$GIT_DIR/BISECT_TERMS" | |
533 | then | |
534 | { | |
535 | read TERM_BAD | |
536 | read TERM_GOOD | |
537 | } <"$GIT_DIR/BISECT_TERMS" | |
538 | fi | |
539 | } | |
540 | ||
541 | write_terms () { | |
542 | TERM_BAD=$1 | |
543 | TERM_GOOD=$2 | |
fe67687b MM |
544 | if test "$TERM_BAD" = "$TERM_GOOD" |
545 | then | |
546 | die "$(gettext "please use two different terms")" | |
547 | fi | |
548 | check_term_format "$TERM_BAD" bad | |
549 | check_term_format "$TERM_GOOD" good | |
cb46d630 AD |
550 | printf '%s\n%s\n' "$TERM_BAD" "$TERM_GOOD" >"$GIT_DIR/BISECT_TERMS" |
551 | } | |
552 | ||
fe67687b MM |
553 | check_term_format () { |
554 | term=$1 | |
555 | git check-ref-format refs/bisect/"$term" || | |
556 | die "$(eval_gettext "'\$term' is not a valid term")" | |
557 | case "$term" in | |
558 | help|start|terms|skip|next|reset|visualize|replay|log|run) | |
559 | die "$(eval_gettext "can't use the builtin command '\$term' as a term")" | |
560 | ;; | |
561 | bad|new) | |
562 | if test "$2" != bad | |
563 | then | |
564 | # In theory, nothing prevents swapping | |
565 | # completely good and bad, but this situation | |
566 | # could be confusing and hasn't been tested | |
567 | # enough. Forbid it for now. | |
568 | die "$(eval_gettext "can't change the meaning of term '\$term'")" | |
569 | fi | |
570 | ;; | |
571 | good|old) | |
572 | if test "$2" != good | |
573 | then | |
574 | die "$(eval_gettext "can't change the meaning of term '\$term'")" | |
575 | fi | |
576 | ;; | |
577 | esac | |
578 | } | |
579 | ||
cb46d630 AD |
580 | check_and_set_terms () { |
581 | cmd="$1" | |
582 | case "$cmd" in | |
583 | skip|start|terms) ;; | |
584 | *) | |
585 | if test -s "$GIT_DIR/BISECT_TERMS" && test "$cmd" != "$TERM_BAD" && test "$cmd" != "$TERM_GOOD" | |
586 | then | |
587 | die "$(eval_gettext "Invalid command: you're currently in a \$TERM_BAD/\$TERM_GOOD bisect.")" | |
588 | fi | |
589 | case "$cmd" in | |
590 | bad|good) | |
591 | if ! test -s "$GIT_DIR/BISECT_TERMS" | |
592 | then | |
593 | write_terms bad good | |
594 | fi | |
595 | ;; | |
21e5cfd8 AD |
596 | new|old) |
597 | if ! test -s "$GIT_DIR/BISECT_TERMS" | |
598 | then | |
599 | write_terms new old | |
600 | fi | |
601 | ;; | |
cb46d630 AD |
602 | esac ;; |
603 | esac | |
604 | } | |
605 | ||
606 | bisect_voc () { | |
607 | case "$1" in | |
21e5cfd8 AD |
608 | bad) echo "bad|new" ;; |
609 | good) echo "good|old" ;; | |
cb46d630 AD |
610 | esac |
611 | } | |
612 | ||
21b55e33 MM |
613 | bisect_terms () { |
614 | get_terms | |
615 | if ! test -s "$GIT_DIR/BISECT_TERMS" | |
616 | then | |
617 | die "$(gettext "no terms defined")" | |
618 | fi | |
619 | case "$#" in | |
620 | 0) | |
621 | gettextln "Your current terms are $TERM_GOOD for the old state | |
622 | and $TERM_BAD for the new state." | |
623 | ;; | |
624 | 1) | |
625 | arg=$1 | |
626 | case "$arg" in | |
627 | --term-good|--term-old) | |
628 | printf '%s\n' "$TERM_GOOD" | |
629 | ;; | |
630 | --term-bad|--term-new) | |
631 | printf '%s\n' "$TERM_BAD" | |
632 | ;; | |
633 | *) | |
634 | die "$(eval_gettext "invalid argument \$arg for 'git bisect terms'. | |
635 | Supported options are: --term-good|--term-old and --term-bad|--term-new.")" | |
636 | ;; | |
637 | esac | |
638 | ;; | |
639 | *) | |
640 | usage ;; | |
641 | esac | |
642 | } | |
643 | ||
8cc6a083 LT |
644 | case "$#" in |
645 | 0) | |
6021be86 | 646 | usage ;; |
8cc6a083 | 647 | *) |
6021be86 | 648 | cmd="$1" |
cb46d630 | 649 | get_terms |
6021be86 JS |
650 | shift |
651 | case "$cmd" in | |
652 | help) | |
653 | git bisect -h ;; | |
654 | start) | |
655 | bisect_start "$@" ;; | |
21e5cfd8 | 656 | bad|good|new|old|"$TERM_BAD"|"$TERM_GOOD") |
6021be86 JS |
657 | bisect_state "$cmd" "$@" ;; |
658 | skip) | |
659 | bisect_skip "$@" ;; | |
660 | next) | |
661 | # Not sure we want "next" at the UI level anymore. | |
662 | bisect_next "$@" ;; | |
663 | visualize|view) | |
664 | bisect_visualize "$@" ;; | |
665 | reset) | |
666 | bisect_reset "$@" ;; | |
667 | replay) | |
668 | bisect_replay "$@" ;; | |
669 | log) | |
670 | bisect_log ;; | |
671 | run) | |
672 | bisect_run "$@" ;; | |
21b55e33 MM |
673 | terms) |
674 | bisect_terms "$@" ;; | |
6021be86 JS |
675 | *) |
676 | usage ;; | |
677 | esac | |
8cc6a083 | 678 | esac |