<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/git-bisect.sh, branch v1.5.2</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://www.git.shady.money/git/atom?h=v1.5.2</id>
<link rel='self' href='https://www.git.shady.money/git/atom?h=v1.5.2'/>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/'/>
<updated>2007-04-17T04:44:40Z</updated>
<entry>
<title>Bisect: simplify "bisect start" logging.</title>
<updated>2007-04-17T04:44:40Z</updated>
<author>
<name>Christian Couder</name>
<email>chriscool@tuxfamily.org</email>
</author>
<published>2007-04-17T04:40:50Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=b8652b4de0e9b386f9a93fbfb1dac06df230cd0a'/>
<id>urn:sha1:b8652b4de0e9b386f9a93fbfb1dac06df230cd0a</id>
<content type='text'>
Signed-off-by: Christian Couder &lt;chriscool@tuxfamily.org&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>git-bisect: allow bisecting with only one bad commit.</title>
<updated>2007-04-07T00:55:57Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2007-04-06T06:27:44Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=0a5280a9f444c33b0e4ebf2f073df5899c112cf8'/>
<id>urn:sha1:0a5280a9f444c33b0e4ebf2f073df5899c112cf8</id>
<content type='text'>
This allows you to say:

	git bisect start
	git bisect bad $bad
	git bisect next

to start bisection without knowing a good commit.  This would
have you try a commit that is half-way since the beginning of
the history, which is rather wasteful if you already know a good
commit, but if you don't (or your history is short enough that
you do not care), there is no reason not to allow this.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>git-bisect: modernization</title>
<updated>2007-04-06T05:51:14Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2007-04-06T05:51:14Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=6fecf1915c5fd0b14e2ca2ec9e1a6b620abfb5c2'/>
<id>urn:sha1:6fecf1915c5fd0b14e2ca2ec9e1a6b620abfb5c2</id>
<content type='text'>
This slightly modernizes the bisect script to use show-ref/for-each-ref
instead of looking into $GIT_DIR/refs files directly.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Bisect: teach "bisect start" to optionally use one bad and many good revs.</title>
<updated>2007-04-05T22:13:14Z</updated>
<author>
<name>Christian Couder</name>
<email>chriscool@tuxfamily.org</email>
</author>
<published>2007-04-04T05:12:02Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=38a47fd6e316030ba1e72ea447243cb47adf2505'/>
<id>urn:sha1:38a47fd6e316030ba1e72ea447243cb47adf2505</id>
<content type='text'>
One bad commit is fundamentally needed for bisect to run,
and if we beforehand know more good commits, we can narrow
the bisect space down without doing the whole tree checkout
every time we give good commits.

This patch implements:

    git bisect start [&lt;bad&gt; [&lt;good&gt;...]] [--] [&lt;pathspec&gt;...]

as a short-hand for this command sequence:

    git bisect start
    git bisect bad $bad
    git bisect good $good1 $good2...

On the other hand, there may be some confusion between revs
(&lt;bad&gt; and &lt;good&gt;...) and &lt;pathspec&gt;... if -- is not used
and if an invalid rev or a pathspec that looks like a rev is
given.

Signed-off-by: Christian Couder &lt;chriscool@tuxfamily.org&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Bisect: Improve error message in "bisect_next_check".</title>
<updated>2007-03-30T06:10:21Z</updated>
<author>
<name>Christian Couder</name>
<email>chriscool@tuxfamily.org</email>
</author>
<published>2007-03-29T07:42:35Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=6f01e6b37008e45efb2b17a027f045600a011e93'/>
<id>urn:sha1:6f01e6b37008e45efb2b17a027f045600a011e93</id>
<content type='text'>
So we can remove the specific message in "bisect_run".

Signed-off-by: Christian Couder &lt;chriscool@tuxfamily.org&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Bisect: add checks at the beginning of "git bisect run".</title>
<updated>2007-03-27T19:48:30Z</updated>
<author>
<name>Christian Couder</name>
<email>chriscool@tuxfamily.org</email>
</author>
<published>2007-03-27T04:49:57Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=8302012097f68caba5be82ba37b191b317886f2b'/>
<id>urn:sha1:8302012097f68caba5be82ba37b191b317886f2b</id>
<content type='text'>
We may be able to "run" with only one good revision given
and then verify that the result of the first run is bad.
And perhaps also the other way around.

But for now let's check that we have at least one bad and
one good revision before we start to run.

Signed-off-by: Christian Couder &lt;chriscool@tuxfamily.org&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Bisect: Use "git-show-ref --verify" when reseting.</title>
<updated>2007-03-26T06:14:06Z</updated>
<author>
<name>Christian Couder</name>
<email>chriscool@tuxfamily.org</email>
</author>
<published>2007-03-26T04:14:40Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=c0ce981f5ebfd02463ff697b2fca52c7a54b0625'/>
<id>urn:sha1:c0ce981f5ebfd02463ff697b2fca52c7a54b0625</id>
<content type='text'>
Signed-off-by: Christian Couder &lt;chriscool@tuxfamily.org&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>git-bisect.sh: properly dq $GIT_DIR</title>
<updated>2007-03-23T20:29:55Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2007-03-23T20:24:22Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=12cb8137332e21957195c3af2923c03a8aad5b5a'/>
<id>urn:sha1:12cb8137332e21957195c3af2923c03a8aad5b5a</id>
<content type='text'>
Otherwise you would be in trouble if your GIT_DIR has IFS letters in it.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>git-bisect: typofix</title>
<updated>2007-03-23T20:15:21Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2007-03-23T20:15:21Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=673e58389fd8531ee1ac191350c2c10b1656486e'/>
<id>urn:sha1:673e58389fd8531ee1ac191350c2c10b1656486e</id>
<content type='text'>
The branch you are on while bisecting is always "bisect", and
checking for "refs/heads/bisect*" is wrong.  Only check if it is
exactly "refs/heads/bisect".

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Bisect: implement "git bisect run &lt;cmd&gt;..." to automatically bisect.</title>
<updated>2007-03-23T08:54:47Z</updated>
<author>
<name>Christian Couder</name>
<email>chriscool@tuxfamily.org</email>
</author>
<published>2007-03-23T07:49:59Z</published>
<link rel='alternate' type='text/html' href='https://www.git.shady.money/git/commit/?id=a17c4101003dbadc13d404a5dd5d106de1e57a3a'/>
<id>urn:sha1:a17c4101003dbadc13d404a5dd5d106de1e57a3a</id>
<content type='text'>
This idea was suggested by Bill Lear
(Message-ID: &lt;17920.38942.364466.642979@lisa.zopyra.com&gt;)
and I think it is a very good one.

This patch adds a new test file for "git bisect run", but there
is currently only one basic test.

Signed-off-by: Christian Couder &lt;chriscool@tuxfamily.org&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
</feed>
