Autogenerated HTML docs for v2.52.0-rc1
diff --git a/RelNotes/2.52.0.adoc b/RelNotes/2.52.0.adoc
index 9759a37..6c0e7d0 100644
--- a/RelNotes/2.52.0.adoc
+++ b/RelNotes/2.52.0.adoc
@@ -76,6 +76,9 @@
 
  * "git repo structure", a new command.
 
+ * The help text and manual page of "git bisect" command have been
+   made consistent with each other.
+
 
 Performance, Internal Implementation, Development Support etc.
 --------------------------------------------------------------
@@ -420,6 +423,10 @@
    documented for fnmatch(3); document as such to reduce confusion.
    (merge 8a6d158a1d jk/doc-backslash-in-exclude later to maint).
 
+ * The version of macos image used in GitHub CI has been updated to
+   macos-14, as the macos-13 that we have been using got deprecated.
+   (merge 73b9cdb7c4 jc/ci-use-macos-14 later to maint).
+
  * Other code cleanup, docfix, build fix, etc.
    (merge 529a60a885 ua/t1517-short-help-tests later to maint).
    (merge 22d421fed9 ac/deglobal-fmt-merge-log-config later to maint).
diff --git a/SubmittingPatches.html b/SubmittingPatches.html
index 8313c07..4249c8a 100644
--- a/SubmittingPatches.html
+++ b/SubmittingPatches.html
@@ -1638,7 +1638,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-04 11:37:22 -0800
+Last updated 2025-11-06 07:08:31 -0800
 </div>
 </div>
 </body>
diff --git a/git-bisect.adoc b/git-bisect.adoc
index 58dbb74..b0078dd 100644
--- a/git-bisect.adoc
+++ b/git-bisect.adoc
@@ -9,26 +9,22 @@
 SYNOPSIS
 --------
 [verse]
-'git bisect' <subcommand> <options>
+'git bisect' start [--term-(bad|new)=<term-new> --term-(good|old)=<term-old>]
+		   [--no-checkout] [--first-parent] [<bad> [<good>...]] [--] [<pathspec>...]
+'git bisect' (bad|new|<term-new>) [<rev>]
+'git bisect' (good|old|<term-old>) [<rev>...]
+'git bisect' terms [--term-(good|old) | --term-(bad|new)]
+'git bisect' skip [(<rev>|<range>)...]
+'git bisect' next
+'git bisect' reset [<commit>]
+'git bisect' (visualize|view)
+'git bisect' replay <logfile>
+'git bisect' log
+'git bisect' run <cmd> [<arg>...]
+'git bisect' help
 
 DESCRIPTION
 -----------
-The command takes various subcommands, and different options depending
-on the subcommand:
-
- git bisect start [--term-(bad|new)=<term-new> --term-(good|old)=<term-old>]
-		  [--no-checkout] [--first-parent] [<bad> [<good>...]] [--] [<pathspec>...]
- git bisect (bad|new|<term-new>) [<rev>]
- git bisect (good|old|<term-old>) [<rev>...]
- git bisect terms [--term-(good|old) | --term-(bad|new)]
- git bisect skip [(<rev>|<range>)...]
- git bisect reset [<commit>]
- git bisect (visualize|view)
- git bisect replay <logfile>
- git bisect log
- git bisect run <cmd> [<arg>...]
- git bisect help
-
 This command uses a binary search algorithm to find which commit in
 your project's history introduced a bug. You use it by first telling
 it a "bad" commit that is known to contain the bug, and a "good"
@@ -295,6 +291,19 @@
 This tells the bisect process that the commits between `v2.5` and
 `v2.6` (inclusive) should be skipped.
 
+Bisect next
+~~~~~~~~~~~
+
+Normally, after marking a revision as good or bad, Git automatically
+computes and checks out the next revision to test. However, if you need to
+explicitly request the next bisection step, you can use:
+
+------------
+$ git bisect next
+------------
+
+You might use this to resume the bisection process after interrupting it
+by checking out a different revision.
 
 Cutting down bisection by giving more parameters to bisect start
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/git-bisect.html b/git-bisect.html
index 8919827..8501f11 100644
--- a/git-bisect.html
+++ b/git-bisect.html
@@ -452,7 +452,19 @@
 <h2 id="_synopsis">SYNOPSIS</h2>
 <div class="sectionbody">
 <div class="verseblock">
-<pre class="content"><em>git bisect</em> &lt;subcommand&gt; &lt;options&gt;</pre>
+<pre class="content"><em>git bisect</em> start [--term-(bad|new)=&lt;term-new&gt; --term-(good|old)=&lt;term-old&gt;]
+                   [--no-checkout] [--first-parent] [&lt;bad&gt; [&lt;good&gt;&#8230;&#8203;]] [--] [&lt;pathspec&gt;&#8230;&#8203;]
+<em>git bisect</em> (bad|new|&lt;term-new&gt;) [&lt;rev&gt;]
+<em>git bisect</em> (good|old|&lt;term-old&gt;) [&lt;rev&gt;&#8230;&#8203;]
+<em>git bisect</em> terms [--term-(good|old) | --term-(bad|new)]
+<em>git bisect</em> skip [(&lt;rev&gt;|&lt;range&gt;)&#8230;&#8203;]
+<em>git bisect</em> next
+<em>git bisect</em> reset [&lt;commit&gt;]
+<em>git bisect</em> (visualize|view)
+<em>git bisect</em> replay &lt;logfile&gt;
+<em>git bisect</em> log
+<em>git bisect</em> run &lt;cmd&gt; [&lt;arg&gt;&#8230;&#8203;]
+<em>git bisect</em> help</pre>
 </div>
 </div>
 </div>
@@ -460,26 +472,6 @@
 <h2 id="_description">DESCRIPTION</h2>
 <div class="sectionbody">
 <div class="paragraph">
-<p>The command takes various subcommands, and different options depending
-on the subcommand:</p>
-</div>
-<div class="literalblock">
-<div class="content">
-<pre>git bisect start [--term-(bad|new)=&lt;term-new&gt; --term-(good|old)=&lt;term-old&gt;]
-	  [--no-checkout] [--first-parent] [&lt;bad&gt; [&lt;good&gt;...]] [--] [&lt;pathspec&gt;...]
-git bisect (bad|new|&lt;term-new&gt;) [&lt;rev&gt;]
-git bisect (good|old|&lt;term-old&gt;) [&lt;rev&gt;...]
-git bisect terms [--term-(good|old) | --term-(bad|new)]
-git bisect skip [(&lt;rev&gt;|&lt;range&gt;)...]
-git bisect reset [&lt;commit&gt;]
-git bisect (visualize|view)
-git bisect replay &lt;logfile&gt;
-git bisect log
-git bisect run &lt;cmd&gt; [&lt;arg&gt;...]
-git bisect help</pre>
-</div>
-</div>
-<div class="paragraph">
 <p>This command uses a binary search algorithm to find which commit in
 your project&#8217;s history introduced a bug. You use it by first telling
 it a "bad" commit that is known to contain the bug, and a "good"
@@ -804,6 +796,23 @@
 </div>
 </div>
 <div class="sect2">
+<h3 id="_bisect_next">Bisect next</h3>
+<div class="paragraph">
+<p>Normally, after marking a revision as good or bad, Git automatically
+computes and checks out the next revision to test. However, if you need to
+explicitly request the next bisection step, you can use:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre>$ git bisect next</pre>
+</div>
+</div>
+<div class="paragraph">
+<p>You might use this to resume the bisection process after interrupting it
+by checking out a different revision.</p>
+</div>
+</div>
+<div class="sect2">
 <h3 id="_cutting_down_bisection_by_giving_more_parameters_to_bisect_start">Cutting down bisection by giving more parameters to bisect start</h3>
 <div class="paragraph">
 <p>You can further cut down the number of trials, if you know what part of
@@ -1091,7 +1100,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-06-20 18:10:42 -0700
+Last updated 2025-11-06 07:08:28 -0800
 </div>
 </div>
 </body>
diff --git a/howto-index.html b/howto-index.html
index d26fef9..a3ee902 100644
--- a/howto-index.html
+++ b/howto-index.html
@@ -622,7 +622,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:28:58 -0800
+Last updated 2025-11-06 07:08:31 -0800
 </div>
 </div>
 </body>
diff --git a/howto/coordinate-embargoed-releases.html b/howto/coordinate-embargoed-releases.html
index 1be894d..5cc3d0f 100644
--- a/howto/coordinate-embargoed-releases.html
+++ b/howto/coordinate-embargoed-releases.html
@@ -736,7 +736,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:29:34 -0800
+Last updated 2025-11-06 07:08:56 -0800
 </div>
 </div>
 </body>
diff --git a/howto/keep-canonical-history-correct.html b/howto/keep-canonical-history-correct.html
index 02d7767..b065ce9 100644
--- a/howto/keep-canonical-history-correct.html
+++ b/howto/keep-canonical-history-correct.html
@@ -703,7 +703,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:29:34 -0800
+Last updated 2025-11-06 07:08:56 -0800
 </div>
 </div>
 </body>
diff --git a/howto/maintain-git.html b/howto/maintain-git.html
index e273f27..eff841b 100644
--- a/howto/maintain-git.html
+++ b/howto/maintain-git.html
@@ -1324,7 +1324,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:29:34 -0800
+Last updated 2025-11-06 07:08:56 -0800
 </div>
 </div>
 </body>
diff --git a/howto/new-command.html b/howto/new-command.html
index 15ee43e..9946a85 100644
--- a/howto/new-command.html
+++ b/howto/new-command.html
@@ -582,7 +582,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:29:33 -0800
+Last updated 2025-11-06 07:08:55 -0800
 </div>
 </div>
 </body>
diff --git a/howto/rebase-from-internal-branch.html b/howto/rebase-from-internal-branch.html
index f0b0a9f..85d6c25 100644
--- a/howto/rebase-from-internal-branch.html
+++ b/howto/rebase-from-internal-branch.html
@@ -654,7 +654,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:29:34 -0800
+Last updated 2025-11-06 07:08:56 -0800
 </div>
 </div>
 </body>
diff --git a/howto/rebuild-from-update-hook.html b/howto/rebuild-from-update-hook.html
index 3c44d53..fa58614 100644
--- a/howto/rebuild-from-update-hook.html
+++ b/howto/rebuild-from-update-hook.html
@@ -561,7 +561,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:29:34 -0800
+Last updated 2025-11-06 07:08:56 -0800
 </div>
 </div>
 </body>
diff --git a/howto/recover-corrupted-blob-object.html b/howto/recover-corrupted-blob-object.html
index d958e5b..f619857 100644
--- a/howto/recover-corrupted-blob-object.html
+++ b/howto/recover-corrupted-blob-object.html
@@ -639,7 +639,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:29:34 -0800
+Last updated 2025-11-06 07:08:56 -0800
 </div>
 </div>
 </body>
diff --git a/howto/recover-corrupted-object-harder.html b/howto/recover-corrupted-object-harder.html
index 1e3ead9..2967444 100644
--- a/howto/recover-corrupted-object-harder.html
+++ b/howto/recover-corrupted-object-harder.html
@@ -965,7 +965,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:29:34 -0800
+Last updated 2025-11-06 07:08:56 -0800
 </div>
 </div>
 </body>
diff --git a/howto/revert-a-faulty-merge.html b/howto/revert-a-faulty-merge.html
index 30cdddf..f677b71 100644
--- a/howto/revert-a-faulty-merge.html
+++ b/howto/revert-a-faulty-merge.html
@@ -827,7 +827,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:29:34 -0800
+Last updated 2025-11-06 07:08:55 -0800
 </div>
 </div>
 </body>
diff --git a/howto/revert-branch-rebase.html b/howto/revert-branch-rebase.html
index 5016d84..8839442 100644
--- a/howto/revert-branch-rebase.html
+++ b/howto/revert-branch-rebase.html
@@ -647,7 +647,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:29:33 -0800
+Last updated 2025-11-06 07:08:55 -0800
 </div>
 </div>
 </body>
diff --git a/howto/separating-topic-branches.html b/howto/separating-topic-branches.html
index c028577..d8908fb 100644
--- a/howto/separating-topic-branches.html
+++ b/howto/separating-topic-branches.html
@@ -566,7 +566,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:29:34 -0800
+Last updated 2025-11-06 07:08:55 -0800
 </div>
 </div>
 </body>
diff --git a/howto/setup-git-server-over-http.html b/howto/setup-git-server-over-http.html
index 5bae6bd..7acf265 100644
--- a/howto/setup-git-server-over-http.html
+++ b/howto/setup-git-server-over-http.html
@@ -880,7 +880,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:29:34 -0800
+Last updated 2025-11-06 07:08:55 -0800
 </div>
 </div>
 </body>
diff --git a/howto/update-hook-example.html b/howto/update-hook-example.html
index b800559..26f0f2e 100644
--- a/howto/update-hook-example.html
+++ b/howto/update-hook-example.html
@@ -646,7 +646,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:29:33 -0800
+Last updated 2025-11-06 07:08:55 -0800
 </div>
 </div>
 </body>
diff --git a/howto/use-git-daemon.html b/howto/use-git-daemon.html
index ee470a2..ea721bc 100644
--- a/howto/use-git-daemon.html
+++ b/howto/use-git-daemon.html
@@ -522,7 +522,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:29:33 -0800
+Last updated 2025-11-06 07:08:55 -0800
 </div>
 </div>
 </body>
diff --git a/howto/using-merge-subtree.html b/howto/using-merge-subtree.html
index 16c0290..75cf455 100644
--- a/howto/using-merge-subtree.html
+++ b/howto/using-merge-subtree.html
@@ -552,7 +552,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:29:33 -0800
+Last updated 2025-11-06 07:08:55 -0800
 </div>
 </div>
 </body>
diff --git a/howto/using-signed-tag-in-pull-request.html b/howto/using-signed-tag-in-pull-request.html
index c37359c..11850f1 100644
--- a/howto/using-signed-tag-in-pull-request.html
+++ b/howto/using-signed-tag-in-pull-request.html
@@ -710,7 +710,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:29:33 -0800
+Last updated 2025-11-06 07:08:55 -0800
 </div>
 </div>
 </body>
diff --git a/technical/api-index.html b/technical/api-index.html
index 5dd18f1..93ebf64 100644
--- a/technical/api-index.html
+++ b/technical/api-index.html
@@ -468,7 +468,7 @@
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2025-11-03 07:29:01 -0800
+Last updated 2025-11-06 07:08:34 -0800
 </div>
 </div>
 </body>