2005-09-08 02:26:23 +02:00
|
|
|
git-bisect(1)
|
|
|
|
=============
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-19 00:53:37 +01:00
|
|
|
git-bisect - Find the change that introduced a bug by binary search
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2007-06-07 09:04:01 +02:00
|
|
|
'git bisect' <subcommand> <options>
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2007-03-24 06:31:49 +01:00
|
|
|
The command takes various subcommands, and different options depending
|
|
|
|
on the subcommand:
|
2005-12-05 09:15:24 +01:00
|
|
|
|
2008-04-11 05:55:21 +02:00
|
|
|
git bisect help
|
2007-04-05 05:33:53 +02:00
|
|
|
git bisect start [<bad> [<good>...]] [--] [<paths>...]
|
2007-10-22 07:49:23 +02:00
|
|
|
git bisect bad [<rev>]
|
|
|
|
git bisect good [<rev>...]
|
|
|
|
git bisect skip [<rev>...]
|
2005-12-05 09:15:24 +01:00
|
|
|
git bisect reset [<branch>]
|
|
|
|
git bisect visualize
|
|
|
|
git bisect replay <logfile>
|
|
|
|
git bisect log
|
2007-03-23 08:49:59 +01:00
|
|
|
git bisect run <cmd>...
|
2005-12-05 09:15:24 +01:00
|
|
|
|
2007-03-24 06:31:49 +01:00
|
|
|
This command uses 'git-rev-list --bisect' option to help drive the
|
|
|
|
binary search process to find which change introduced a bug, given an
|
|
|
|
old "good" commit object name and a later "bad" commit object name.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2008-04-11 05:55:21 +02:00
|
|
|
Getting help
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Use "git bisect" to get a short usage description, and "git bisect
|
|
|
|
help" or "git bisect -h" to get a long usage description.
|
|
|
|
|
2007-03-24 06:30:33 +01:00
|
|
|
Basic bisect commands: start, bad, good
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2005-08-30 02:21:06 +02:00
|
|
|
The way you use it is:
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2005-08-30 02:21:06 +02:00
|
|
|
------------------------------------------------
|
2005-12-05 09:15:24 +01:00
|
|
|
$ git bisect start
|
2007-03-24 06:32:05 +01:00
|
|
|
$ git bisect bad # Current version is bad
|
|
|
|
$ git bisect good v2.6.13-rc2 # v2.6.13-rc2 was the last version
|
|
|
|
# tested that was good
|
2005-08-30 02:21:06 +02:00
|
|
|
------------------------------------------------
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2007-03-24 06:31:49 +01:00
|
|
|
When you give at least one bad and one good versions, it will bisect
|
|
|
|
the revision tree and say something like:
|
2005-08-30 02:21:06 +02:00
|
|
|
|
|
|
|
------------------------------------------------
|
|
|
|
Bisecting: 675 revisions left to test after this
|
|
|
|
------------------------------------------------
|
|
|
|
|
2007-03-24 06:31:49 +01:00
|
|
|
and check out the state in the middle. Now, compile that kernel, and
|
|
|
|
boot it. Now, let's say that this booted kernel works fine, then just
|
|
|
|
do
|
2005-08-30 02:21:06 +02:00
|
|
|
|
|
|
|
------------------------------------------------
|
2005-12-05 09:15:24 +01:00
|
|
|
$ git bisect good # this one is good
|
2005-08-30 02:21:06 +02:00
|
|
|
------------------------------------------------
|
|
|
|
|
|
|
|
which will now say
|
|
|
|
|
|
|
|
------------------------------------------------
|
|
|
|
Bisecting: 337 revisions left to test after this
|
|
|
|
------------------------------------------------
|
|
|
|
|
2007-03-24 06:31:49 +01:00
|
|
|
and you continue along, compiling that one, testing it, and depending
|
|
|
|
on whether it is good or bad, you say "git bisect good" or "git bisect
|
|
|
|
bad", and ask for the next bisection.
|
2005-08-30 02:21:06 +02:00
|
|
|
|
2007-03-24 06:31:49 +01:00
|
|
|
Until you have no more left, and you'll have been left with the first
|
|
|
|
bad kernel rev in "refs/bisect/bad".
|
2005-08-30 02:21:06 +02:00
|
|
|
|
2007-03-24 06:30:33 +01:00
|
|
|
Bisect reset
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
2005-08-30 02:21:06 +02:00
|
|
|
Oh, and then after you want to reset to the original head, do a
|
|
|
|
|
|
|
|
------------------------------------------------
|
2005-12-05 09:15:24 +01:00
|
|
|
$ git bisect reset
|
2005-08-30 02:21:06 +02:00
|
|
|
------------------------------------------------
|
|
|
|
|
2007-03-24 06:31:49 +01:00
|
|
|
to get back to the master branch, instead of being in one of the
|
|
|
|
bisection branches ("git bisect start" will do that for you too,
|
|
|
|
actually: it will reset the bisection state, and before it does that
|
|
|
|
it checks that you're not using some old bisection branch).
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2007-03-24 06:30:33 +01:00
|
|
|
Bisect visualize
|
|
|
|
~~~~~~~~~~~~~~~~
|
|
|
|
|
2005-08-30 22:51:01 +02:00
|
|
|
During the bisection process, you can say
|
|
|
|
|
2005-12-05 09:15:24 +01:00
|
|
|
------------
|
|
|
|
$ git bisect visualize
|
|
|
|
------------
|
2005-08-30 22:51:01 +02:00
|
|
|
|
2007-12-07 11:25:34 +01:00
|
|
|
to see the currently remaining suspects in `gitk`. `visualize` is a bit
|
|
|
|
too long to type and `view` is provided as a synonym.
|
|
|
|
|
|
|
|
If `DISPLAY` environment variable is not set, `git log` is used
|
|
|
|
instead. You can even give command line options such as `-p` and
|
|
|
|
`--stat`.
|
|
|
|
|
|
|
|
------------
|
|
|
|
$ git bisect view --stat
|
|
|
|
------------
|
2005-08-30 22:51:01 +02:00
|
|
|
|
2007-03-24 06:30:33 +01:00
|
|
|
Bisect log and bisect replay
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2007-03-24 06:31:49 +01:00
|
|
|
The good/bad input is logged, and
|
|
|
|
|
|
|
|
------------
|
|
|
|
$ git bisect log
|
|
|
|
------------
|
|
|
|
|
|
|
|
shows what you have done so far. You can truncate its output somewhere
|
|
|
|
and save it in a file, and run
|
2005-09-11 00:23:09 +02:00
|
|
|
|
2005-12-05 09:15:24 +01:00
|
|
|
------------
|
|
|
|
$ git bisect replay that-file
|
|
|
|
------------
|
2005-09-11 00:23:09 +02:00
|
|
|
|
|
|
|
if you find later you made a mistake telling good/bad about a
|
|
|
|
revision.
|
|
|
|
|
2007-03-24 06:30:33 +01:00
|
|
|
Avoiding to test a commit
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2007-03-24 06:31:49 +01:00
|
|
|
If in a middle of bisect session, you know what the bisect suggested
|
|
|
|
to try next is not a good one to test (e.g. the change the commit
|
|
|
|
introduces is known not to work in your environment and you know it
|
|
|
|
does not have anything to do with the bug you are chasing), you may
|
|
|
|
want to find a near-by commit and try that instead.
|
|
|
|
|
|
|
|
It goes something like this:
|
2005-12-05 09:15:24 +01:00
|
|
|
|
|
|
|
------------
|
|
|
|
$ git bisect good/bad # previous round was good/bad.
|
|
|
|
Bisecting: 337 revisions left to test after this
|
|
|
|
$ git bisect visualize # oops, that is uninteresting.
|
|
|
|
$ git reset --hard HEAD~3 # try 3 revs before what
|
|
|
|
# was suggested
|
|
|
|
------------
|
|
|
|
|
2007-03-24 06:31:49 +01:00
|
|
|
Then compile and test the one you chose to try. After that, tell
|
|
|
|
bisect what the result was as usual.
|
2005-12-05 09:15:24 +01:00
|
|
|
|
2007-10-22 07:49:23 +02:00
|
|
|
Bisect skip
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Instead of choosing by yourself a nearby commit, you may just want git
|
|
|
|
to do it for you using:
|
|
|
|
|
|
|
|
------------
|
|
|
|
$ git bisect skip # Current version cannot be tested
|
|
|
|
------------
|
|
|
|
|
|
|
|
But computing the commit to test may be slower afterwards and git may
|
|
|
|
eventually not be able to tell the first bad among a bad and one or
|
|
|
|
more "skip"ped commits.
|
|
|
|
|
2007-04-05 05:33:53 +02:00
|
|
|
Cutting down bisection by giving more parameters to bisect start
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2007-03-24 06:30:33 +01:00
|
|
|
|
2007-03-24 06:31:49 +01:00
|
|
|
You can further cut down the number of trials if you know what part of
|
|
|
|
the tree is involved in the problem you are tracking down, by giving
|
|
|
|
paths parameters when you say `bisect start`, like this:
|
2005-12-05 09:15:24 +01:00
|
|
|
|
|
|
|
------------
|
2007-04-05 05:33:53 +02:00
|
|
|
$ git bisect start -- arch/i386 include/asm-i386
|
|
|
|
------------
|
|
|
|
|
|
|
|
If you know beforehand more than one good commits, you can narrow the
|
|
|
|
bisect space down without doing the whole tree checkout every time you
|
|
|
|
give good commits. You give the bad revision immediately after `start`
|
|
|
|
and then you give all the good revisions you have:
|
|
|
|
|
|
|
|
------------
|
|
|
|
$ git bisect start v2.6.20-rc6 v2.6.20-rc4 v2.6.20-rc1 --
|
|
|
|
# v2.6.20-rc6 is bad
|
|
|
|
# v2.6.20-rc4 and v2.6.20-rc1 are good
|
2005-12-05 09:15:24 +01:00
|
|
|
------------
|
|
|
|
|
2007-03-24 06:30:33 +01:00
|
|
|
Bisect run
|
|
|
|
~~~~~~~~~~
|
|
|
|
|
2007-03-24 06:29:58 +01:00
|
|
|
If you have a script that can tell if the current source code is good
|
|
|
|
or bad, you can automatically bisect using:
|
2007-03-23 08:49:59 +01:00
|
|
|
|
|
|
|
------------
|
|
|
|
$ git bisect run my_script
|
|
|
|
------------
|
|
|
|
|
2007-03-24 06:29:58 +01:00
|
|
|
Note that the "run" script (`my_script` in the above example) should
|
2007-10-26 05:39:37 +02:00
|
|
|
exit with code 0 in case the current source code is good. Exit with a
|
|
|
|
code between 1 and 127 (inclusive), except 125, if the current
|
|
|
|
source code is bad.
|
2007-03-23 08:49:59 +01:00
|
|
|
|
2007-03-24 06:31:16 +01:00
|
|
|
Any other exit code will abort the automatic bisect process. (A
|
|
|
|
program that does "exit(-1)" leaves $? = 255, see exit(3) manual page,
|
|
|
|
the value is chopped with "& 0377".)
|
2007-03-23 08:49:59 +01:00
|
|
|
|
2007-10-26 05:39:37 +02:00
|
|
|
The special exit code 125 should be used when the current source code
|
|
|
|
cannot be tested. If the "run" script exits with this code, the current
|
|
|
|
revision will be skipped, see `git bisect skip` above.
|
|
|
|
|
2007-03-23 08:49:59 +01:00
|
|
|
You may often find that during bisect you want to have near-constant
|
|
|
|
tweaks (e.g., s/#define DEBUG 0/#define DEBUG 1/ in a header file, or
|
|
|
|
"revision that does not have this commit needs this patch applied to
|
|
|
|
work around other problem this bisection is not interested in")
|
|
|
|
applied to the revision being tested.
|
|
|
|
|
|
|
|
To cope with such a situation, after the inner git-bisect finds the
|
|
|
|
next revision to test, with the "run" script, you can apply that tweak
|
|
|
|
before compiling, run the real test, and after the test decides if the
|
|
|
|
revision (possibly with the needed tweaks) passed the test, rewind the
|
|
|
|
tree to the pristine state. Finally the "run" script can exit with
|
|
|
|
the status of the real test to let "git bisect run" command loop to
|
|
|
|
know the outcome.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Linus Torvalds <torvalds@osdl.org>
|
|
|
|
|
|
|
|
Documentation
|
2005-10-03 19:16:30 +02:00
|
|
|
-------------
|
2005-08-23 10:49:47 +02:00
|
|
|
Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2007-12-29 07:20:38 +01:00
|
|
|
Part of the linkgit:git[7] suite
|