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
|
|
|
|
--------
|
2011-07-02 04:38:26 +02:00
|
|
|
[verse]
|
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
|
2011-08-04 14:01:03 +02:00
|
|
|
git bisect start [--no-checkout] [<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>)...]
|
2009-10-13 23:02:24 +02:00
|
|
|
git bisect reset [<commit>]
|
2005-12-05 09:15:24 +01:00
|
|
|
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-10-13 23:02:24 +02:00
|
|
|
After a bisect session, to clean up the bisection state and return to
|
2013-02-11 09:35:04 +01:00
|
|
|
the original HEAD (i.e., to quit bisecting), issue the 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-10-13 23:02:24 +02:00
|
|
|
By default, this will return your tree to the commit that was checked
|
|
|
|
out before `git bisect start`. (A new `git bisect start` will also do
|
|
|
|
that, as it cleans up the old bisection state.)
|
|
|
|
|
|
|
|
With an optional argument, you can return to a different commit
|
|
|
|
instead:
|
|
|
|
|
|
|
|
------------------------------------------------
|
|
|
|
$ git bisect reset <commit>
|
|
|
|
------------------------------------------------
|
|
|
|
|
|
|
|
For example, `git bisect reset HEAD` will leave you on the current
|
|
|
|
bisection commit and avoid switching commits at all, while `git bisect
|
|
|
|
reset bisect/bad` will check out the first bad revision.
|
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
|
2014-05-21 20:52:26 +02:00
|
|
|
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
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
2013-01-21 20:17:53 +01:00
|
|
|
Instead of choosing by yourself a nearby commit, you can ask Git
|
2009-03-17 07:16:15 +01:00
|
|
|
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
|
|
|
|
------------
|
|
|
|
|
2013-01-21 20:17:53 +01:00
|
|
|
But Git may eventually be unable to tell the first bad commit among
|
2009-06-13 13:11:02 +02:00
|
|
|
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
|
2011-03-20 05:46:06 +01:00
|
|
|
revision will be skipped (see `git bisect skip` above). 125 was chosen
|
|
|
|
as the highest sensible value to use for this purpose, because 126 and 127
|
|
|
|
are used by POSIX shells to signal specific error status (127 is for
|
|
|
|
command not found, 126 is for command found but not executable---these
|
|
|
|
details do not matter, as they are normal errors in the script, as far as
|
|
|
|
"bisect run" is concerned).
|
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
|
|
|
|
2011-08-04 14:01:03 +02:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
--no-checkout::
|
|
|
|
+
|
|
|
|
Do not checkout the new working tree at each iteration of the bisection
|
|
|
|
process. Instead just update a special reference named 'BISECT_HEAD' to make
|
|
|
|
it point to the commit that should be tested.
|
|
|
|
+
|
|
|
|
This option may be useful when the test you would perform in each step
|
|
|
|
does not require a checked out tree.
|
2011-08-09 04:11:54 +02:00
|
|
|
+
|
|
|
|
If the repository is bare, `--no-checkout` is assumed.
|
2011-08-04 14:01:03 +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
|
2013-02-11 09:35:04 +01:00
|
|
|
$ git bisect reset # quit the bisect session
|
2008-05-08 01:00:54 +02:00
|
|
|
------------
|
|
|
|
|
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
|
2013-02-11 09:35:04 +01:00
|
|
|
$ git bisect reset # quit the bisect session
|
2009-03-05 13:36:14 +01:00
|
|
|
------------
|
|
|
|
|
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
|
2011-03-15 22:24:55 +01:00
|
|
|
~/check_test_case.sh # does the test case pass?
|
2008-05-08 01:00:54 +02:00
|
|
|
$ git bisect start HEAD HEAD~10 -- # culprit is among the last 10
|
|
|
|
$ git bisect run ~/test.sh
|
2013-02-11 09:35:04 +01:00
|
|
|
$ git bisect reset # quit the bisect session
|
2008-05-08 01:00:54 +02:00
|
|
|
------------
|
|
|
|
+
|
|
|
|
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.
|
2011-03-15 22:24:55 +01:00
|
|
|
"check_test_case.sh" should "exit 0" if the test case passes,
|
2009-03-17 07:16:15 +01:00
|
|
|
and "exit 1" otherwise.
|
2008-05-08 01:00:54 +02:00
|
|
|
+
|
2011-03-15 22:24:55 +01:00
|
|
|
It is safer if both "test.sh" and "check_test_case.sh" are
|
2009-03-17 07:16:15 +01:00
|
|
|
outside the repository to prevent interactions between the bisect,
|
|
|
|
make and test processes and the scripts.
|
2008-05-08 01:00:54 +02:00
|
|
|
|
2011-03-15 22:24:56 +01:00
|
|
|
* Automatically bisect with temporary modifications (hot-fix):
|
2008-05-08 01:00:54 +02:00
|
|
|
+
|
|
|
|
------------
|
|
|
|
$ cat ~/test.sh
|
|
|
|
#!/bin/sh
|
2011-03-15 22:24:56 +01:00
|
|
|
|
|
|
|
# tweak the working tree by merging the hot-fix branch
|
|
|
|
# and then attempt a build
|
|
|
|
if git merge --no-commit hot-fix &&
|
|
|
|
make
|
|
|
|
then
|
|
|
|
# run project specific test and report its status
|
|
|
|
~/check_test_case.sh
|
|
|
|
status=$?
|
|
|
|
else
|
|
|
|
# tell the caller this is untestable
|
|
|
|
status=125
|
|
|
|
fi
|
|
|
|
|
|
|
|
# undo the tweak to allow clean flipping to the next commit
|
|
|
|
git reset --hard
|
|
|
|
|
|
|
|
# return control
|
|
|
|
exit $status
|
2008-05-08 01:00:54 +02:00
|
|
|
------------
|
|
|
|
+
|
2011-03-15 22:24:56 +01:00
|
|
|
This applies modifications from a hot-fix branch before each test run,
|
|
|
|
e.g. in case your build or test environment changed so that older
|
|
|
|
revisions may need a fix which newer ones have already. (Make sure the
|
|
|
|
hot-fix branch is based off a commit which is contained in all revisions
|
|
|
|
which you are bisecting, so that the merge does not pull in too much, or
|
|
|
|
use `git cherry-pick` instead of `git merge`.)
|
2008-05-08 01:00:54 +02:00
|
|
|
|
2011-03-15 22:24:55 +01:00
|
|
|
* Automatically bisect a broken test case:
|
2009-03-05 13:36:14 +01:00
|
|
|
+
|
|
|
|
------------
|
|
|
|
$ git bisect start HEAD HEAD~10 -- # culprit is among the last 10
|
|
|
|
$ git bisect run sh -c "make || exit 125; ~/check_test_case.sh"
|
2013-02-11 09:35:04 +01:00
|
|
|
$ git bisect reset # quit the bisect session
|
2009-03-05 13:36:14 +01:00
|
|
|
------------
|
|
|
|
+
|
2011-03-15 22:24:55 +01:00
|
|
|
This shows that you can do without a run script if you write the test
|
|
|
|
on a single line.
|
2009-03-05 13:36:14 +01:00
|
|
|
|
2011-08-04 14:01:03 +02:00
|
|
|
* Locate a good region of the object graph in a damaged repository
|
|
|
|
+
|
|
|
|
------------
|
|
|
|
$ git bisect start HEAD <known-good-commit> [ <boundary-commit> ... ] --no-checkout
|
|
|
|
$ git bisect run sh -c '
|
|
|
|
GOOD=$(git for-each-ref "--format=%(objectname)" refs/bisect/good-*) &&
|
|
|
|
git rev-list --objects BISECT_HEAD --not $GOOD >tmp.$$ &&
|
|
|
|
git pack-objects --stdout >/dev/null <tmp.$$
|
|
|
|
rc=$?
|
|
|
|
rm -f tmp.$$
|
|
|
|
test $rc = 0'
|
|
|
|
|
2013-02-11 09:35:04 +01:00
|
|
|
$ git bisect reset # quit the bisect session
|
2011-08-04 14:01:03 +02:00
|
|
|
------------
|
|
|
|
+
|
|
|
|
In this case, when 'git bisect run' finishes, bisect/bad will refer to a commit that
|
|
|
|
has at least one parent whose reachable graph is fully traversable in the sense
|
|
|
|
required by 'git pack objects'.
|
|
|
|
|
|
|
|
|
2009-11-08 16:09:47 +01:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
link:git-bisect-lk2009.html[Fighting regressions with git bisect],
|
|
|
|
linkgit:git-blame[1].
|
|
|
|
|
2005-08-23 10:49:47 +02:00
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|