Skip to content

Commit b620736

Browse files
committed
Autogenerated HTML docs for v2.52.0-rc1
1 parent 77a3e61 commit b620736

22 files changed

+83
-58
lines changed

RelNotes/2.52.0.adoc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ UI, Workflows & Features
7676

7777
* "git repo structure", a new command.
7878

79+
* The help text and manual page of "git bisect" command have been
80+
made consistent with each other.
81+
7982

8083
Performance, Internal Implementation, Development Support etc.
8184
--------------------------------------------------------------
@@ -420,6 +423,10 @@ including security updates, are included in this release.
420423
documented for fnmatch(3); document as such to reduce confusion.
421424
(merge 8a6d158a1d jk/doc-backslash-in-exclude later to maint).
422425

426+
* The version of macos image used in GitHub CI has been updated to
427+
macos-14, as the macos-13 that we have been using got deprecated.
428+
(merge 73b9cdb7c4 jc/ci-use-macos-14 later to maint).
429+
423430
* Other code cleanup, docfix, build fix, etc.
424431
(merge 529a60a885 ua/t1517-short-help-tests later to maint).
425432
(merge 22d421fed9 ac/deglobal-fmt-merge-log-config later to maint).

SubmittingPatches.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1638,7 +1638,7 @@ <h3 id="_gnus">Gnus</h3>
16381638
</div>
16391639
<div id="footer">
16401640
<div id="footer-text">
1641-
Last updated 2025-11-04 11:37:22 -0800
1641+
Last updated 2025-11-06 07:08:31 -0800
16421642
</div>
16431643
</div>
16441644
</body>

git-bisect.adoc

Lines changed: 26 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,22 @@ git-bisect - Use binary search to find the commit that introduced a bug
99
SYNOPSIS
1010
--------
1111
[verse]
12-
'git bisect' <subcommand> <options>
12+
'git bisect' start [--term-(bad|new)=<term-new> --term-(good|old)=<term-old>]
13+
[--no-checkout] [--first-parent] [<bad> [<good>...]] [--] [<pathspec>...]
14+
'git bisect' (bad|new|<term-new>) [<rev>]
15+
'git bisect' (good|old|<term-old>) [<rev>...]
16+
'git bisect' terms [--term-(good|old) | --term-(bad|new)]
17+
'git bisect' skip [(<rev>|<range>)...]
18+
'git bisect' next
19+
'git bisect' reset [<commit>]
20+
'git bisect' (visualize|view)
21+
'git bisect' replay <logfile>
22+
'git bisect' log
23+
'git bisect' run <cmd> [<arg>...]
24+
'git bisect' help
1325

1426
DESCRIPTION
1527
-----------
16-
The command takes various subcommands, and different options depending
17-
on the subcommand:
18-
19-
git bisect start [--term-(bad|new)=<term-new> --term-(good|old)=<term-old>]
20-
[--no-checkout] [--first-parent] [<bad> [<good>...]] [--] [<pathspec>...]
21-
git bisect (bad|new|<term-new>) [<rev>]
22-
git bisect (good|old|<term-old>) [<rev>...]
23-
git bisect terms [--term-(good|old) | --term-(bad|new)]
24-
git bisect skip [(<rev>|<range>)...]
25-
git bisect reset [<commit>]
26-
git bisect (visualize|view)
27-
git bisect replay <logfile>
28-
git bisect log
29-
git bisect run <cmd> [<arg>...]
30-
git bisect help
31-
3228
This command uses a binary search algorithm to find which commit in
3329
your project's history introduced a bug. You use it by first telling
3430
it a "bad" commit that is known to contain the bug, and a "good"
@@ -295,6 +291,19 @@ $ git bisect skip v2.5 v2.5..v2.6
295291
This tells the bisect process that the commits between `v2.5` and
296292
`v2.6` (inclusive) should be skipped.
297293

294+
Bisect next
295+
~~~~~~~~~~~
296+
297+
Normally, after marking a revision as good or bad, Git automatically
298+
computes and checks out the next revision to test. However, if you need to
299+
explicitly request the next bisection step, you can use:
300+
301+
------------
302+
$ git bisect next
303+
------------
304+
305+
You might use this to resume the bisection process after interrupting it
306+
by checking out a different revision.
298307

299308
Cutting down bisection by giving more parameters to bisect start
300309
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

git-bisect.html

Lines changed: 31 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -452,34 +452,26 @@ <h2 id="_name">NAME</h2>
452452
<h2 id="_synopsis">SYNOPSIS</h2>
453453
<div class="sectionbody">
454454
<div class="verseblock">
455-
<pre class="content"><em>git bisect</em> &lt;subcommand&gt; &lt;options&gt;</pre>
455+
<pre class="content"><em>git bisect</em> start [--term-(bad|new)=&lt;term-new&gt; --term-(good|old)=&lt;term-old&gt;]
456+
[--no-checkout] [--first-parent] [&lt;bad&gt; [&lt;good&gt;&#8230;&#8203;]] [--] [&lt;pathspec&gt;&#8230;&#8203;]
457+
<em>git bisect</em> (bad|new|&lt;term-new&gt;) [&lt;rev&gt;]
458+
<em>git bisect</em> (good|old|&lt;term-old&gt;) [&lt;rev&gt;&#8230;&#8203;]
459+
<em>git bisect</em> terms [--term-(good|old) | --term-(bad|new)]
460+
<em>git bisect</em> skip [(&lt;rev&gt;|&lt;range&gt;)&#8230;&#8203;]
461+
<em>git bisect</em> next
462+
<em>git bisect</em> reset [&lt;commit&gt;]
463+
<em>git bisect</em> (visualize|view)
464+
<em>git bisect</em> replay &lt;logfile&gt;
465+
<em>git bisect</em> log
466+
<em>git bisect</em> run &lt;cmd&gt; [&lt;arg&gt;&#8230;&#8203;]
467+
<em>git bisect</em> help</pre>
456468
</div>
457469
</div>
458470
</div>
459471
<div class="sect1">
460472
<h2 id="_description">DESCRIPTION</h2>
461473
<div class="sectionbody">
462474
<div class="paragraph">
463-
<p>The command takes various subcommands, and different options depending
464-
on the subcommand:</p>
465-
</div>
466-
<div class="literalblock">
467-
<div class="content">
468-
<pre>git bisect start [--term-(bad|new)=&lt;term-new&gt; --term-(good|old)=&lt;term-old&gt;]
469-
[--no-checkout] [--first-parent] [&lt;bad&gt; [&lt;good&gt;...]] [--] [&lt;pathspec&gt;...]
470-
git bisect (bad|new|&lt;term-new&gt;) [&lt;rev&gt;]
471-
git bisect (good|old|&lt;term-old&gt;) [&lt;rev&gt;...]
472-
git bisect terms [--term-(good|old) | --term-(bad|new)]
473-
git bisect skip [(&lt;rev&gt;|&lt;range&gt;)...]
474-
git bisect reset [&lt;commit&gt;]
475-
git bisect (visualize|view)
476-
git bisect replay &lt;logfile&gt;
477-
git bisect log
478-
git bisect run &lt;cmd&gt; [&lt;arg&gt;...]
479-
git bisect help</pre>
480-
</div>
481-
</div>
482-
<div class="paragraph">
483475
<p>This command uses a binary search algorithm to find which commit in
484476
your project&#8217;s history introduced a bug. You use it by first telling
485477
it a "bad" commit that is known to contain the bug, and a "good"
@@ -804,6 +796,23 @@ <h3 id="_bisect_skip">Bisect skip</h3>
804796
</div>
805797
</div>
806798
<div class="sect2">
799+
<h3 id="_bisect_next">Bisect next</h3>
800+
<div class="paragraph">
801+
<p>Normally, after marking a revision as good or bad, Git automatically
802+
computes and checks out the next revision to test. However, if you need to
803+
explicitly request the next bisection step, you can use:</p>
804+
</div>
805+
<div class="listingblock">
806+
<div class="content">
807+
<pre>$ git bisect next</pre>
808+
</div>
809+
</div>
810+
<div class="paragraph">
811+
<p>You might use this to resume the bisection process after interrupting it
812+
by checking out a different revision.</p>
813+
</div>
814+
</div>
815+
<div class="sect2">
807816
<h3 id="_cutting_down_bisection_by_giving_more_parameters_to_bisect_start">Cutting down bisection by giving more parameters to bisect start</h3>
808817
<div class="paragraph">
809818
<p>You can further cut down the number of trials, if you know what part of
@@ -1091,7 +1100,7 @@ <h2 id="_git">GIT</h2>
10911100
</div>
10921101
<div id="footer">
10931102
<div id="footer-text">
1094-
Last updated 2025-06-20 18:10:42 -0700
1103+
Last updated 2025-11-06 07:08:28 -0800
10951104
</div>
10961105
</div>
10971106
</body>

howto-index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ <h1>Git Howto Index</h1>
622622
</div>
623623
<div id="footer">
624624
<div id="footer-text">
625-
Last updated 2025-11-03 07:28:58 -0800
625+
Last updated 2025-11-06 07:08:31 -0800
626626
</div>
627627
</div>
628628
</body>

howto/coordinate-embargoed-releases.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,7 @@ <h3 id="_example_mail_to_oss_securitylists_openwall_com">Example mail to <a href
736736
</div>
737737
<div id="footer">
738738
<div id="footer-text">
739-
Last updated 2025-11-03 07:29:34 -0800
739+
Last updated 2025-11-06 07:08:56 -0800
740740
</div>
741741
</div>
742742
</body>

howto/keep-canonical-history-correct.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ <h1>Keep authoritative canonical history correct with git pull</h1>
703703
</div>
704704
<div id="footer">
705705
<div id="footer-text">
706-
Last updated 2025-11-03 07:29:34 -0800
706+
Last updated 2025-11-06 07:08:56 -0800
707707
</div>
708708
</div>
709709
</body>

howto/maintain-git.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1324,7 +1324,7 @@ <h3 id="_preparing_a_merge_fix">Preparing a "merge-fix"</h3>
13241324
</div>
13251325
<div id="footer">
13261326
<div id="footer-text">
1327-
Last updated 2025-11-03 07:29:34 -0800
1327+
Last updated 2025-11-06 07:08:56 -0800
13281328
</div>
13291329
</div>
13301330
</body>

howto/new-command.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ <h2 id="_integrating_a_command">Integrating a command</h2>
582582
</div>
583583
<div id="footer">
584584
<div id="footer-text">
585-
Last updated 2025-11-03 07:29:33 -0800
585+
Last updated 2025-11-06 07:08:55 -0800
586586
</div>
587587
</div>
588588
</body>

howto/rebase-from-internal-branch.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ <h1>How to rebase from an internal branch</h1>
654654
</div>
655655
<div id="footer">
656656
<div id="footer-text">
657-
Last updated 2025-11-03 07:29:34 -0800
657+
Last updated 2025-11-06 07:08:56 -0800
658658
</div>
659659
</div>
660660
</body>

0 commit comments

Comments
 (0)