<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/Documentation/git-bisect.txt, branch v2.33.6</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://git.shady.money/git/atom?h=v2.33.6</id>
<link rel='self' href='https://git.shady.money/git/atom?h=v2.33.6'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/'/>
<updated>2020-08-28T21:06:06Z</updated>
<entry>
<title>bisect: swap command-line options in documentation</title>
<updated>2020-08-28T21:06:06Z</updated>
<author>
<name>Hugo Locurcio</name>
<email>hugo.locurcio@hugo.pro</email>
</author>
<published>2020-08-28T15:31:19Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=ef4d9f8a32f472feacb135c4e0508d53d0f93fb0'/>
<id>urn:sha1:ef4d9f8a32f472feacb135c4e0508d53d0f93fb0</id>
<content type='text'>
The positional arguments are specified in this order: "bad" then "good".
To avoid confusion, the options above the positional arguments
are now specified in the same order. They can still be specified in any
order since they're options, not positional arguments.

Signed-off-by: Hugo Locurcio &lt;hugo.locurcio@hugo.pro&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>bisect: introduce first-parent flag</title>
<updated>2020-08-07T22:13:03Z</updated>
<author>
<name>Aaron Lipman</name>
<email>alipman88@gmail.com</email>
</author>
<published>2020-08-07T21:58:37Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=e8861ffc203fe5ea3da97210e60b2e886002f218'/>
<id>urn:sha1:e8861ffc203fe5ea3da97210e60b2e886002f218</id>
<content type='text'>
Upon seeing a merge commit when bisecting, this option may be used to
follow only the first parent.

In detecting regressions introduced through the merging of a branch, the
merge commit will be identified as introduction of the bug and its
ancestors will be ignored.

This option is particularly useful in avoiding false positives when a
merged branch contained broken or non-buildable commits, but the merge
itself was OK.

Signed-off-by: Aaron Lipman &lt;alipman88@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Documentation/git-bisect.txt: add --no-ff to merge command</title>
<updated>2019-10-29T02:53:56Z</updated>
<author>
<name>Mihail Atanassov</name>
<email>m.atanassov92@gmail.com</email>
</author>
<published>2019-10-28T22:01:22Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=8dd327b2465c5d2af62b85cb7974ceec41ab25f2'/>
<id>urn:sha1:8dd327b2465c5d2af62b85cb7974ceec41ab25f2</id>
<content type='text'>
The hotfix application example uses `git merge --no-commit` to apply
temporary changes to the working tree during a bisect operation. In some
situations this can be a fast-forward and `merge` will apply the hotfix
branch's commits regardless of `--no-commit` (as documented in the `git
merge` manual).

In the pathological case this will make a `git bisect run` invocation
loop indefinitely between the first bisect step and the fast-forwarded
post-merge HEAD.

Add `--no-ff` to the merge command to avoid this issue.

Signed-off-by: Mihail Atanassov &lt;m.atanassov92@gmail.com&gt;
Reviewed-by: Jonathan Nieder &lt;jrnieder@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'ak/bisect-doc-typofix'</title>
<updated>2018-04-25T04:28:56Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2018-04-25T04:28:56Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=f2d5e076674cccbe83d7f069201ec23608726650'/>
<id>urn:sha1:f2d5e076674cccbe83d7f069201ec23608726650</id>
<content type='text'>
Docfix.

* ak/bisect-doc-typofix:
  Documentation/git-bisect.txt: git bisect term → git bisect terms
</content>
</entry>
<entry>
<title>Documentation/git-bisect.txt: git bisect term → git bisect terms</title>
<updated>2018-04-07T11:50:19Z</updated>
<author>
<name>Anders Kaseorg</name>
<email>andersk@mit.edu</email>
</author>
<published>2018-04-06T20:21:19Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=bbd374dd20a529c5b85ca3b50b37f3635e92cce4'/>
<id>urn:sha1:bbd374dd20a529c5b85ca3b50b37f3635e92cce4</id>
<content type='text'>
Signed-off-by: Anders Kaseorg &lt;andersk@mit.edu&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>bisect: mention "view" as an alternative to "visualize"</title>
<updated>2017-11-13T01:51:14Z</updated>
<author>
<name>Robert P. J. Day</name>
<email>rpjday@crashcourse.ca</email>
</author>
<published>2017-11-12T09:30:38Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=dbc349bba0ddf118b0ec8404ec01014d49cecfd3'/>
<id>urn:sha1:dbc349bba0ddf118b0ec8404ec01014d49cecfd3</id>
<content type='text'>
Tweak a small number of files to mention "view" as an alternative to
"visualize".

Signed-off-by: Robert P. J. Day &lt;rpjday@crashcourse.ca&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>git-bisect.txt: add missing word</title>
<updated>2017-04-01T18:35:45Z</updated>
<author>
<name>Quentin Pradet</name>
<email>quentin.pradet@gmail.com</email>
</author>
<published>2017-04-01T06:40:56Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=60b091c6796a73ff8e56a7211d88d6c605bf55b5'/>
<id>urn:sha1:60b091c6796a73ff8e56a7211d88d6c605bf55b5</id>
<content type='text'>
Signed-off-by: Quentin Pradet &lt;quentin.pradet@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'ad/bisect-terms'</title>
<updated>2017-01-23T23:59:22Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2017-01-23T23:59:22Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=e94577039564ace7b7fb8186d170ea7350f55e4c'/>
<id>urn:sha1:e94577039564ace7b7fb8186d170ea7350f55e4c</id>
<content type='text'>
Documentation fix.

* ad/bisect-terms:
  Documentation/bisect: improve on (bad|new) and (good|bad)
</content>
</entry>
<entry>
<title>Documentation/bisect: improve on (bad|new) and (good|bad)</title>
<updated>2017-01-13T19:15:38Z</updated>
<author>
<name>Christian Couder</name>
<email>christian.couder@gmail.com</email>
</author>
<published>2017-01-13T14:44:05Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=3f05402ac00ed6415b1df2b6823471e017817432'/>
<id>urn:sha1:3f05402ac00ed6415b1df2b6823471e017817432</id>
<content type='text'>
The following part of the description:

git bisect (bad|new) [&lt;rev&gt;]
git bisect (good|old) [&lt;rev&gt;...]

may be a bit confusing, as a reader may wonder if instead it should be:

git bisect (bad|good) [&lt;rev&gt;]
git bisect (old|new) [&lt;rev&gt;...]

Of course the difference between "[&lt;rev&gt;]" and "[&lt;rev&gt;...]" should hint
that there is a good reason for the way it is.

But we can further clarify and complete the description by adding
"&lt;term-new&gt;" and "&lt;term-old&gt;" to the "bad|new" and "good|old"
alternatives.

Signed-off-by: Christian Couder &lt;chriscool@tuxfamily.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>doc: typeset HEAD and variants as literal</title>
<updated>2016-06-28T15:36:45Z</updated>
<author>
<name>Matthieu Moy</name>
<email>Matthieu.Moy@imag.fr</email>
</author>
<published>2016-06-28T11:40:15Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=661c3e9bc064564a492281364413dc805eaddf95'/>
<id>urn:sha1:661c3e9bc064564a492281364413dc805eaddf95</id>
<content type='text'>
This is an application of the newly added CodingGuidelines to HEAD and
variants like FETCH_HEAD. It was obtained with:

  perl -pi -e "s/'([A-Z_]*HEAD)'/\`\$1\`/g" *.txt

Signed-off-by: Matthieu Moy &lt;Matthieu.Moy@imag.fr&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
</feed>
