2005-09-08 02:26:23 +02:00
|
|
|
git-bisect(1)
|
|
|
|
=============
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2009-03-17 07:16:15 +01:00
|
|
|
git-bisect - Find by binary search the change that introduced a bug
|
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>...]
|
2008-12-02 14:53:51 +01:00
|
|
|
git bisect skip [(<rev>|<range>)...]
|
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
|
|
|
|
2008-11-09 14:53:14 +01:00
|
|
|
This command uses 'git rev-list --bisect' to help drive the
|
2007-03-24 06:31:49 +01:00
|
|
|
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
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2009-03-17 07:16:15 +01:00
|
|
|
Using the Linux kernel tree as an example, basic use of the bisect
|
|
|
|
command is as follows:
|
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
|
|
|
|
2009-03-17 07:16:15 +01:00
|
|
|
When you have specified at least one bad and one good version, the
|
2009-03-20 04:35:34 +01:00
|
|
|
command bisects the revision tree and outputs something similar to
|
|
|
|
the following:
|
2005-08-30 02:21:06 +02:00
|
|
|
|
|
|
|
------------------------------------------------
|
|
|
|
Bisecting: 675 revisions left to test after this
|
|
|
|
------------------------------------------------
|
|
|
|
|
2009-03-20 04:35:34 +01:00
|
|
|
The state in the middle of the set of revisions is then checked out.
|
|
|
|
You would now compile that kernel and boot it. If the booted kernel
|
|
|
|
works correctly, you would then issue the following command:
|
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
|
|
|
------------------------------------------------
|
|
|
|
|
2009-03-20 04:35:34 +01:00
|
|
|
The output of this command would be something similar to the following:
|
2005-08-30 02:21:06 +02:00
|
|
|
|
|
|
|
------------------------------------------------
|
|
|
|
Bisecting: 337 revisions left to test after this
|
|
|
|
------------------------------------------------
|
|
|
|
|
2009-03-20 04:35:34 +01:00
|
|
|
You keep repeating this process, compiling the tree, testing it, and
|
|
|
|
depending on whether it is good or bad issuing the command "git bisect good"
|
2009-03-17 07:16:15 +01:00
|
|
|
or "git bisect bad" to ask for the next bisection.
|
2005-08-30 02:21:06 +02:00
|
|
|
|
2009-03-17 07:16:15 +01:00
|
|
|
Eventually there will be no more revisions left to bisect, and you
|
|
|
|
will have been left with the first bad kernel revision in "refs/bisect/bad".
|
2005-08-30 02:21:06 +02:00
|
|
|
|
2007-03-24 06:30:33 +01:00
|
|
|
Bisect reset
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
2009-03-23 04:11:10 +01:00
|
|
|
To return to the original head after a bisect session, issue the
|
2009-03-20 04:35:34 +01:00
|
|
|
following command:
|
2005-08-30 02:21:06 +02:00
|
|
|
|
|
|
|
------------------------------------------------
|
2005-12-05 09:15:24 +01:00
|
|
|
$ git bisect reset
|
2005-08-30 02:21:06 +02:00
|
|
|
------------------------------------------------
|
|
|
|
|
2009-03-17 07:16:15 +01:00
|
|
|
This resets the tree to the original branch instead of being on the
|
|
|
|
bisection commit ("git bisect start" will also do that, as it resets
|
|
|
|
the bisection state).
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2007-03-24 06:30:33 +01:00
|
|
|
Bisect visualize
|
|
|
|
~~~~~~~~~~~~~~~~
|
|
|
|
|
2009-03-23 04:11:10 +01:00
|
|
|
To see the currently remaining suspects in 'gitk', issue the following
|
|
|
|
command during the bisection process:
|
2005-08-30 22:51:01 +02:00
|
|
|
|
2005-12-05 09:15:24 +01:00
|
|
|
------------
|
|
|
|
$ git bisect visualize
|
|
|
|
------------
|
2005-08-30 22:51:01 +02:00
|
|
|
|
2009-03-20 04:35:34 +01:00
|
|
|
`view` may also be used as a synonym for `visualize`.
|
2007-12-07 11:25:34 +01:00
|
|
|
|
2009-03-17 07:16:15 +01:00
|
|
|
If the 'DISPLAY' environment variable is not set, 'git log' is used
|
|
|
|
instead. You can also give command line options such as `-p` and
|
2007-12-07 11:25:34 +01:00
|
|
|
`--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
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2009-03-23 04:11:10 +01:00
|
|
|
After having marked revisions as good or bad, issue the following
|
2009-03-20 04:35:34 +01:00
|
|
|
command to show what has been done so far:
|
2007-03-24 06:31:49 +01:00
|
|
|
|
|
|
|
------------
|
|
|
|
$ git bisect log
|
|
|
|
------------
|
|
|
|
|
2009-03-20 04:35:34 +01:00
|
|
|
If you discover that you made a mistake in specifying the status of a
|
|
|
|
revision, you can save the output of this command to a file, edit it to
|
|
|
|
remove the incorrect entries, and then issue the following commands to
|
|
|
|
return to a corrected state:
|
2005-09-11 00:23:09 +02:00
|
|
|
|
2005-12-05 09:15:24 +01:00
|
|
|
------------
|
2009-03-19 08:00:12 +01:00
|
|
|
$ git bisect reset
|
2005-12-05 09:15:24 +01:00
|
|
|
$ git bisect replay that-file
|
|
|
|
------------
|
2005-09-11 00:23:09 +02:00
|
|
|
|
2009-03-17 07:16:15 +01:00
|
|
|
Avoiding testing a commit
|
2007-03-24 06:30:33 +01:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2009-03-23 04:11:10 +01:00
|
|
|
If, in the middle of a bisect session, you know that the next suggested
|
2009-03-17 07:16:15 +01:00
|
|
|
revision is not a good one to test (e.g. the change the commit
|
2007-03-24 06:31:49 +01:00
|
|
|
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
|
2009-03-17 07:16:15 +01:00
|
|
|
want to find a nearby commit and try that instead.
|
2007-03-24 06:31:49 +01:00
|
|
|
|
2009-03-17 07:16:15 +01:00
|
|
|
For example:
|
2005-12-05 09:15:24 +01:00
|
|
|
|
|
|
|
------------
|
2009-03-19 08:00:12 +01:00
|
|
|
$ git bisect good/bad # previous round was good or bad.
|
2005-12-05 09:15:24 +01:00
|
|
|
Bisecting: 337 revisions left to test after this
|
|
|
|
$ git bisect visualize # oops, that is uninteresting.
|
2009-03-17 07:16:15 +01:00
|
|
|
$ git reset --hard HEAD~3 # try 3 revisions before what
|
2005-12-05 09:15:24 +01:00
|
|
|
# was suggested
|
|
|
|
------------
|
|
|
|
|
2009-03-26 04:44:44 +01:00
|
|
|
Then compile and test the chosen revision, and afterwards mark
|
2009-03-23 04:11:10 +01:00
|
|
|
the revision as good or bad in the usual manner.
|
2005-12-05 09:15:24 +01:00
|
|
|
|
2007-10-22 07:49:23 +02:00
|
|
|
Bisect skip
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
2009-03-17 07:16:15 +01:00
|
|
|
Instead of choosing by yourself a nearby commit, you can ask git
|
|
|
|
to do it for you by issuing the command:
|
2007-10-22 07:49:23 +02:00
|
|
|
|
|
|
|
------------
|
|
|
|
$ git bisect skip # Current version cannot be tested
|
|
|
|
------------
|
|
|
|
|
2009-06-13 13:11:02 +02:00
|
|
|
But git may eventually be unable to tell the first bad commit among
|
|
|
|
a bad commit and one or more skipped commits.
|
2007-10-22 07:49:23 +02:00
|
|
|
|
2008-12-02 14:53:51 +01:00
|
|
|
You can even skip a range of commits, instead of just one commit,
|
|
|
|
using the "'<commit1>'..'<commit2>'" notation. For example:
|
|
|
|
|
|
|
|
------------
|
|
|
|
$ git bisect skip v2.5..v2.6
|
|
|
|
------------
|
|
|
|
|
2009-03-26 04:44:44 +01:00
|
|
|
This tells the bisect process that no commit after `v2.5`, up to and
|
|
|
|
including `v2.6`, should be tested.
|
2008-12-02 14:53:51 +01:00
|
|
|
|
2009-03-17 07:16:15 +01:00
|
|
|
Note that if you also want to skip the first commit of the range you
|
|
|
|
would issue the command:
|
2008-12-02 14:53:51 +01:00
|
|
|
|
|
|
|
------------
|
|
|
|
$ git bisect skip v2.5 v2.5..v2.6
|
|
|
|
------------
|
|
|
|
|
2009-03-23 04:11:10 +01:00
|
|
|
This tells the bisect process that the commits between `v2.5` included
|
|
|
|
and `v2.6` included should be skipped.
|
2009-03-20 04:35:34 +01:00
|
|
|
|
2008-12-02 14:53:51 +01:00
|
|
|
|
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
|
|
|
|
2009-03-17 07:16:15 +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 specifying
|
2009-03-20 04:35:34 +01:00
|
|
|
path parameters when issuing the `bisect start` command:
|
2005-12-05 09:15:24 +01:00
|
|
|
|
|
|
|
------------
|
2007-04-05 05:33:53 +02:00
|
|
|
$ git bisect start -- arch/i386 include/asm-i386
|
|
|
|
------------
|
|
|
|
|
2009-03-17 07:16:15 +01:00
|
|
|
If you know beforehand more than one good commit, you can narrow the
|
|
|
|
bisect space down by specifying all of the good commits immediately after
|
|
|
|
the bad commit when issuing the `bisect start` command:
|
2007-04-05 05:33:53 +02:00
|
|
|
|
|
|
|
------------
|
|
|
|
$ 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
|
2009-03-17 07:16:15 +01:00
|
|
|
or bad, you can bisect by issuing the command:
|
2007-03-23 08:49:59 +01:00
|
|
|
|
|
|
|
------------
|
2009-03-05 13:36:14 +01:00
|
|
|
$ git bisect run my_script arguments
|
2007-03-23 08:49:59 +01:00
|
|
|
------------
|
|
|
|
|
2009-03-17 07:16:15 +01:00
|
|
|
Note that the script (`my_script` in the above example) should
|
|
|
|
exit with code 0 if the current source code is good, and exit with a
|
2007-10-26 05:39:37 +02:00
|
|
|
code between 1 and 127 (inclusive), except 125, if the current
|
|
|
|
source code is bad.
|
2007-03-23 08:49:59 +01:00
|
|
|
|
2009-03-17 07:16:15 +01:00
|
|
|
Any other exit code will abort the bisect process. It should be noted
|
|
|
|
that a program that terminates via "exit(-1)" leaves $? = 255, (see the
|
|
|
|
exit(3) manual page), as 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
|
2009-03-17 07:16:15 +01:00
|
|
|
cannot be tested. If the script exits with this code, the current
|
|
|
|
revision will be skipped (see `git bisect skip` above).
|
2007-10-26 05:39:37 +02:00
|
|
|
|
2009-03-17 07:16:15 +01:00
|
|
|
You may often find that during a bisect session you want to have
|
|
|
|
temporary modifications (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 another problem this bisection is not
|
|
|
|
interested in") applied to the revision being tested.
|
2007-03-23 08:49:59 +01:00
|
|
|
|
2008-11-09 14:53:14 +01:00
|
|
|
To cope with such a situation, after the inner 'git bisect' finds the
|
2009-03-17 07:16:15 +01:00
|
|
|
next revision to test, the script can apply the patch
|
|
|
|
before compiling, run the real test, and afterwards decide if the
|
|
|
|
revision (possibly with the needed patch) passed the test and then
|
|
|
|
rewind the tree to the pristine state. Finally the script should exit
|
|
|
|
with the status of the real test to let the "git bisect run" command loop
|
2009-03-19 08:00:12 +01:00
|
|
|
determine the eventual outcome of the bisect session.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2008-05-08 01:00:54 +02:00
|
|
|
EXAMPLES
|
|
|
|
--------
|
|
|
|
|
|
|
|
* Automatically bisect a broken build between v1.2 and HEAD:
|
|
|
|
+
|
|
|
|
------------
|
|
|
|
$ git bisect start HEAD v1.2 -- # HEAD is bad, v1.2 is good
|
|
|
|
$ git bisect run make # "make" builds the app
|
|
|
|
------------
|
|
|
|
|
2009-03-05 13:36:14 +01:00
|
|
|
* Automatically bisect a test failure between origin and HEAD:
|
|
|
|
+
|
|
|
|
------------
|
|
|
|
$ git bisect start HEAD origin -- # HEAD is bad, origin is good
|
|
|
|
$ git bisect run make test # "make test" builds and tests
|
|
|
|
------------
|
|
|
|
|
2008-05-08 01:00:54 +02:00
|
|
|
* Automatically bisect a broken test suite:
|
|
|
|
+
|
|
|
|
------------
|
|
|
|
$ cat ~/test.sh
|
|
|
|
#!/bin/sh
|
2009-03-17 07:16:15 +01:00
|
|
|
make || exit 125 # this skips broken builds
|
2008-05-08 01:00:54 +02:00
|
|
|
make test # "make test" runs the test suite
|
|
|
|
$ git bisect start v1.3 v1.1 -- # v1.3 is bad, v1.1 is good
|
|
|
|
$ git bisect run ~/test.sh
|
|
|
|
------------
|
|
|
|
+
|
|
|
|
Here we use a "test.sh" custom script. In this script, if "make"
|
2009-03-17 07:16:15 +01:00
|
|
|
fails, we skip the current commit.
|
2008-05-08 01:00:54 +02:00
|
|
|
+
|
2009-03-17 07:16:15 +01:00
|
|
|
It is safer to use a custom script outside the repository to prevent
|
2008-05-08 01:00:54 +02:00
|
|
|
interactions between the bisect, make and test processes and the
|
|
|
|
script.
|
|
|
|
+
|
2009-03-17 07:16:15 +01:00
|
|
|
"make test" should "exit 0", if the test suite passes, and
|
|
|
|
"exit 1" otherwise.
|
2008-05-08 01:00:54 +02:00
|
|
|
|
|
|
|
* Automatically bisect a broken test case:
|
|
|
|
+
|
|
|
|
------------
|
|
|
|
$ cat ~/test.sh
|
|
|
|
#!/bin/sh
|
2009-03-17 07:16:15 +01:00
|
|
|
make || exit 125 # this skips broken builds
|
2008-05-08 01:00:54 +02:00
|
|
|
~/check_test_case.sh # does the test case passes ?
|
|
|
|
$ git bisect start HEAD HEAD~10 -- # culprit is among the last 10
|
|
|
|
$ git bisect run ~/test.sh
|
|
|
|
------------
|
|
|
|
+
|
2009-03-17 07:16:15 +01:00
|
|
|
Here "check_test_case.sh" should "exit 0" if the test case passes,
|
|
|
|
and "exit 1" otherwise.
|
2008-05-08 01:00:54 +02:00
|
|
|
+
|
2009-03-17 07:16:15 +01:00
|
|
|
It is safer if both "test.sh" and "check_test_case.sh" scripts are
|
|
|
|
outside the repository to prevent interactions between the bisect,
|
|
|
|
make and test processes and the scripts.
|
2008-05-08 01:00:54 +02:00
|
|
|
|
2009-03-05 13:36:14 +01:00
|
|
|
* Automatically bisect a broken test suite:
|
|
|
|
+
|
|
|
|
------------
|
|
|
|
$ git bisect start HEAD HEAD~10 -- # culprit is among the last 10
|
|
|
|
$ git bisect run sh -c "make || exit 125; ~/check_test_case.sh"
|
|
|
|
------------
|
|
|
|
+
|
|
|
|
Does the same as the previous example, but on a single line.
|
|
|
|
|
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
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|