3 USAGE
='[start|bad|good|next|reset|visualize|replay|log|run]'
4 LONG_USAGE
='git bisect start [<bad> [<good>...]] [--] [<pathspec>...]
5 reset bisect state and start bisection.
7 mark <rev> a known-bad revision.
8 git bisect good [<rev>...]
9 mark <rev>... known-good revisions.
11 find next bisection to test and check it out.
12 git bisect reset [<branch>]
13 finish bisection search and go back to branch.
15 show bisect status in gitk.
16 git bisect replay <logfile>
20 git bisect skip [<rev>...]
21 mark <rev>... untestable revisions.
22 git bisect run <cmd>...
23 use <cmd>... to automatically bisect.'
31 s/'\''/'\'\\\\\'\''/g;
39 test -d "$GIT_DIR/refs/bisect" ||
{
40 echo >&2 'You need to start by "git bisect start"'
43 echo >&2 -n 'Do you want me to do it for you [Y/n]? '
58 # Verify HEAD. If we were bisecting before this, reset to the
59 # top-of-line master first!
61 head=$
(GIT_DIR
="$GIT_DIR" git symbolic-ref HEAD
) ||
62 die
"Bad HEAD - I need a symbolic ref"
65 if [ -s "$GIT_DIR/head-name" ]; then
66 branch
=`cat "$GIT_DIR/head-name"`
70 git checkout
$branch ||
exit
73 [ -s "$GIT_DIR/head-name" ] && die
"won't bisect on seeked tree"
74 echo "$head" |
sed 's#^refs/heads/##' >"$GIT_DIR/head-name"
77 die
"Bad HEAD - strange symbolic ref"
82 # Get rid of any old bisect state
85 mkdir
"$GIT_DIR/refs/bisect"
88 # Check for one bad and then some good revisions.
92 case "$arg" in --) has_double_dash
=1; break ;; esac
96 while [ $# -gt 0 ]; do
104 rev=$
(git rev-parse
--verify "$arg^{commit}" 2>/dev
/null
) ||
{
105 test $has_double_dash -eq 1 &&
106 die
"'$arg' does not appear to be a valid revision"
109 if [ $bad_seen -eq 0 ]; then
111 bisect_write
'bad' "$rev"
113 bisect_write
'good' "$rev"
120 sq "$@" >"$GIT_DIR/BISECT_NAMES"
121 echo "git-bisect start$orig_args" >>"$GIT_DIR/BISECT_LOG"
130 good|skip
) tag
="$state"-"$rev" ;;
131 *) die
"Bad bisect_write argument: $state" ;;
133 echo "$rev" >"$GIT_DIR/refs/bisect/$tag"
134 echo "# $state: "$
(git show-branch
$rev) >>"$GIT_DIR/BISECT_LOG"
141 rev=$
(git rev-parse
--verify HEAD
) ;;
143 rev=$
(git rev-parse
--verify "$1^{commit}") ;;
147 bisect_write
'bad' "$rev"
148 echo "git-bisect bad $rev" >>"$GIT_DIR/BISECT_LOG"
155 0) revs
=$
(git rev-parse
--verify HEAD
) ||
exit ;;
156 *) revs
=$
(git rev-parse
--revs-only --no-flags "$@") &&
157 test '' != "$revs" || die
"Bad rev input: $@" ;;
161 rev=$
(git rev-parse
--verify "$rev^{commit}") ||
exit
162 bisect_write
'good' "$rev"
163 echo "git-bisect good $rev" >>"$GIT_DIR/BISECT_LOG"
171 0) revs
=$
(git rev-parse
--verify HEAD
) ||
exit ;;
172 *) revs
=$
(git rev-parse
--revs-only --no-flags "$@") &&
173 test '' != "$revs" || die
"Bad rev input: $@" ;;
177 rev=$
(git rev-parse
--verify "$rev^{commit}") ||
exit
178 bisect_write
'skip' "$rev"
179 echo "git-bisect skip $rev" >>"$GIT_DIR/BISECT_LOG"
184 bisect_next_check
() {
185 missing_good
= missing_bad
=
186 git show-ref
-q --verify refs
/bisect
/bad || missing_bad
=t
187 test -n "$(git for-each-ref "refs
/bisect
/good-
*")" || missing_good
=t
189 case "$missing_good,$missing_bad,$1" in
191 : have both good and bad
- ok
194 # do not have both but not asked to fail - just report.
198 # have bad but not good. we could bisect although
199 # this is less optimum.
200 echo >&2 'Warning: bisecting only with a bad commit.'
203 printf >&2 'Are you sure [Y/n]? '
204 case "$(read yesno)" in [Nn
]*) exit 1 ;; esac
206 : bisect without good...
210 test -d "$GIT_DIR/refs/bisect" ||
{
211 echo >&2 'You need to start by "git bisect start".'
214 echo >&2 'You '$THEN'need to give me at least one good' \
215 'and one bad revisions.'
216 echo >&2 '(You can use "git bisect bad" and' \
217 '"git bisect good" for that.)'
223 bisect_next_check
&& bisect_next ||
:
230 if [ -z "$_skip" ]; then
235 # Let's parse the output of:
236 # "git rev-list --bisect-vars --bisect-all ..."
237 eval $_eval |
while read hash line
239 case "$VARS,$FOUND,$TRIED,$hash" in
240 # We display some vars.
241 1,*,*,*) echo "$hash $line" ;;
246 # We had nothing to search.
252 # We did not find a good bisect rev.
253 # This should happen only if the "bad"
254 # commit is also a "skip" commit.
256 echo "bisect_rev=$TRIED"
262 TRIED
="${TRIED:+$TRIED|}$hash"
266 echo "bisect_rev=$hash"
267 echo "bisect_tried=\"$TRIED\""
273 # We have already found a rev to be tested.
274 ,1,*,bisect_rev
*) VARS
=1 ;;
278 *) die
"filter_skipped error " \
289 exit_if_skipped_commits
() {
291 if expr "$_tried" : ".*[|].*" > /dev
/null
; then
292 echo "There are only 'skip'ped commit left to test."
293 echo "The first bad commit could be any of:"
294 echo "$_tried" |
sed -e 's/[|]/\n/g'
295 echo "We cannot bisect more!"
301 case "$#" in 0) ;; *) usage
;; esac
303 bisect_next_check good
305 skip
=$
(git for-each-ref
--format='%(objectname)' \
306 "refs/bisect/skip-*" |
tr '[\012]' ' ') ||
exit
309 test -n "$skip" && BISECT_OPT
='--bisect-all'
311 bad
=$
(git rev-parse
--verify refs
/bisect
/bad
) &&
312 good
=$
(git for-each-ref
--format='^%(objectname)' \
313 "refs/bisect/good-*" |
tr '[\012]' ' ') &&
314 eval="git rev-list --bisect-vars $BISECT_OPT $good $bad --" &&
315 eval="$eval $(cat "$GIT_DIR/BISECT_NAMES
")" &&
316 eval=$
(filter_skipped
"$eval" "$skip") &&
319 if [ -z "$bisect_rev" ]; then
320 echo "$bad was both good and bad"
323 if [ "$bisect_rev" = "$bad" ]; then
324 exit_if_skipped_commits
"$bisect_tried"
325 echo "$bisect_rev is first bad commit"
326 git diff-tree
--pretty $bisect_rev
330 # We should exit here only if the "bad"
331 # commit is also a "skip" commit (see above).
332 exit_if_skipped_commits
"$bisect_rev"
334 echo "Bisecting: $bisect_nr revisions left to test after this"
335 echo "$bisect_rev" >"$GIT_DIR/refs/heads/new-bisect"
336 git checkout
-q new-bisect ||
exit
337 mv "$GIT_DIR/refs/heads/new-bisect" "$GIT_DIR/refs/heads/bisect" &&
338 GIT_DIR
="$GIT_DIR" git symbolic-ref HEAD refs
/heads
/bisect
339 git show-branch
"$bisect_rev"
343 bisect_next_check fail
344 not
=`cd "$GIT_DIR/refs" && echo bisect/good-*`
345 eval gitk bisect
/bad
--not $not -- $
(cat "$GIT_DIR/BISECT_NAMES")
350 0) if [ -s "$GIT_DIR/head-name" ]; then
351 branch
=`cat "$GIT_DIR/head-name"`
355 1) git show-ref
--verify --quiet -- "refs/heads/$1" ||
{
356 echo >&2 "$1 does not seem to be a valid branch"
363 if git checkout
"$branch"; then
364 rm -f "$GIT_DIR/head-name"
369 bisect_clean_state
() {
370 rm -fr "$GIT_DIR/refs/bisect"
371 rm -f "$GIT_DIR/refs/heads/bisect"
372 rm -f "$GIT_DIR/BISECT_LOG"
373 rm -f "$GIT_DIR/BISECT_NAMES"
374 rm -f "$GIT_DIR/BISECT_RUN"
379 echo >&2 "cannot read $1 for replaying"
383 while read bisect
command rev
385 test "$bisect" = "git-bisect" ||
continue
388 cmd
="bisect_start $rev"
392 bisect_write
'good' "$rev"
393 echo "git-bisect good $rev" >>"$GIT_DIR/BISECT_LOG"
396 bisect_write
'bad' "$rev"
397 echo "git-bisect bad $rev" >>"$GIT_DIR/BISECT_LOG"
400 bisect_write
'skip' "$rev"
401 echo "git-bisect skip $rev" >>"$GIT_DIR/BISECT_LOG"
404 echo >&2 "?? what are you talking about?"
412 bisect_next_check fail
420 # Check for really bad run error.
421 if [ $res -lt 0 -o $res -ge 128 ]; then
422 echo >&2 "bisect run failed:"
423 echo >&2 "exit code $res from '$@' is < 0 or >= 128"
427 # Use "bisect_good" or "bisect_bad"
428 # depending on run success or failure.
429 if [ $res -gt 0 ]; then
430 next_bisect
='bisect_bad'
432 next_bisect
='bisect_good'
435 # We have to use a subshell because bisect_good or
436 # bisect_bad functions can exit.
437 ( $next_bisect > "$GIT_DIR/BISECT_RUN" )
440 cat "$GIT_DIR/BISECT_RUN"
442 if [ $res -ne 0 ]; then
443 echo >&2 "bisect run failed:"
444 echo >&2 "$next_bisect exited with error code $res"
448 if grep "is first bad commit" "$GIT_DIR/BISECT_RUN" > /dev
/null
; then
449 echo "bisect run success"
473 # Not sure we want "next" at the UI level anymore.
476 bisect_visualize
"$@" ;;
480 bisect_replay
"$@" ;;
482 cat "$GIT_DIR/BISECT_LOG" ;;