Skip to content

Commit

Permalink
Autogenerated HTML docs for v2.43.0-386-ge02ecfc
Browse files Browse the repository at this point in the history
  • Loading branch information
gitster committed Jan 20, 2024
1 parent ba62bfc commit 8c9d882
Show file tree
Hide file tree
Showing 53 changed files with 110 additions and 73 deletions.
2 changes: 1 addition & 1 deletion MyFirstContribution.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>My First Contribution to the Git Project</h1>
<span id="revdate">2024-01-16</span>
<span id="revdate">2024-01-19</span>
</div>
<div id="content">
<div class="sect1">
Expand Down
2 changes: 1 addition & 1 deletion MyFirstObjectWalk.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>My First Object Walk</h1>
<span id="revdate">2024-01-16</span>
<span id="revdate">2024-01-19</span>
</div>
<div id="content">
<div class="sect1">
Expand Down
10 changes: 10 additions & 0 deletions RelNotes/2.44.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ UI, Workflows & Features
useful in magic pathspec, e.g., ":(attr:builtin_objectmode=100755)"
to limit to executables.

* "git fetch" learned to pay attention to "fetch.all" configuration
variable, which pretends as if "--all" was passed from the command
line when no remote parameter was given.

* In addition to (rather cryptic) Security Identifiers, show username
and domain in the error message when we barf on mismatch between
the Git directory and the current user on Windows.


Performance, Internal Implementation, Development Support etc.

Expand Down Expand Up @@ -204,3 +212,5 @@ Fixes since v2.43
(merge 03bcc93769 cp/sideband-array-index-comment-fix later to maint).
(merge 993d38a066 jk/index-pack-lsan-false-positive-fix later to maint).
(merge 25aec06326 ib/rebase-reschedule-doc later to maint).
(merge 5aea3955bc rj/clarify-branch-doc-m later to maint).
(merge 9cce3be2df bk/bisect-doc-fix later to maint).
2 changes: 1 addition & 1 deletion ReviewingGuidelines.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>Reviewing Patches in the Git Project</h1>
<span id="revdate">2024-01-16</span>
<span id="revdate">2024-01-19</span>
</div>
<div id="content">
<div class="sect1">
Expand Down
2 changes: 1 addition & 1 deletion SubmittingPatches.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>Submitting Patches</h1>
<span id="revdate">2024-01-16</span>
<span id="revdate">2024-01-19</span>
</div>
<div id="content">
<div class="sect1">
Expand Down
2 changes: 1 addition & 1 deletion ToolsForGit.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>Tools for developing Git</h1>
<span id="revdate">2024-01-16</span>
<span id="revdate">2024-01-19</span>
</div>
<div id="content">
<div class="sect1">
Expand Down
2 changes: 1 addition & 1 deletion everyday.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>Everyday Git With 20 Commands Or So</h1>
<span id="revdate">2024-01-16</span>
<span id="revdate">2024-01-19</span>
</div>
<div id="content">
<div id="preamble">
Expand Down
5 changes: 3 additions & 2 deletions fetch-options.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
--all::
Fetch all remotes.
--[no-]all::
Fetch all remotes. This overrides the configuration variable
`fetch.all`.

-a::
--append::
Expand Down
6 changes: 3 additions & 3 deletions git-bisect.html
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ <h2 id="_description">DESCRIPTION</h2>
<div class="literalblock">
<div class="content">
<pre><code>git bisect start [--term-(new|bad)=&lt;term-new&gt; --term-(old|good)=&lt;term-old&gt;]
[--no-checkout] [--first-parent] [&lt;bad&gt; [&lt;good&gt;...]] [--] [&lt;paths&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 | --term-bad]
Expand Down Expand Up @@ -1001,7 +1001,7 @@ <h3 id="_bisect_skip">Bisect skip</h3>
<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
the tree is involved in the problem you are tracking down, by specifying
path parameters when issuing the <code>bisect start</code> command:</p></div>
pathspec parameters when issuing the <code>bisect start</code> command:</p></div>
<div class="listingblock">
<div class="content">
<pre><code>$ git bisect start -- arch/i386 include/asm-i386</code></pre>
Expand Down Expand Up @@ -1244,7 +1244,7 @@ <h2 id="_git">GIT</h2>
<div id="footer">
<div id="footer-text">
Last updated
2023-12-27 15:50:18 PST
2024-01-19 16:47:36 PST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions git-bisect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The command takes various subcommands, and different options depending
on the subcommand:

git bisect start [--term-(new|bad)=<term-new> --term-(old|good)=<term-old>]
[--no-checkout] [--first-parent] [<bad> [<good>...]] [--] [<paths>...]
[--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 | --term-bad]
Expand Down Expand Up @@ -299,7 +299,7 @@ Cutting down bisection by giving more parameters to bisect start

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
path parameters when issuing the `bisect start` command:
pathspec parameters when issuing the `bisect start` command:

------------
$ git bisect start -- arch/i386 include/asm-i386
Expand Down
5 changes: 3 additions & 2 deletions git-branch.html
Original file line number Diff line number Diff line change
Expand Up @@ -1243,7 +1243,8 @@ <h2 id="_options">OPTIONS</h2>
</dt>
<dd>
<p>
The name of an existing branch to rename.
The name of an existing branch. If this option is omitted,
the name of the current branch will be used instead.
</p>
</dd>
<dt class="hdlist1">
Expand Down Expand Up @@ -1592,7 +1593,7 @@ <h2 id="_git">GIT</h2>
<div id="footer">
<div id="footer-text">
Last updated
2023-10-29 16:42:00 PDT
2024-01-19 16:47:36 PST
</div>
</div>
</body>
Expand Down
3 changes: 2 additions & 1 deletion git-branch.txt
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,8 @@ superproject's "origin/main", but tracks the submodule's "origin/main".
option is omitted, the current HEAD will be used instead.

<oldbranch>::
The name of an existing branch to rename.
The name of an existing branch. If this option is omitted,
the name of the current branch will be used instead.

<newbranch>::
The new name for an existing branch. The same restrictions as for
Expand Down
11 changes: 11 additions & 0 deletions git-config.html
Original file line number Diff line number Diff line change
Expand Up @@ -5625,6 +5625,17 @@ <h3 id="_variables">Variables</h3>
</p>
</dd>
<dt class="hdlist1">
fetch.all
</dt>
<dd>
<p>
If true, fetch will attempt to update all available remotes.
This behavior can be overridden by passing <code>--no-all</code> or by
explicitly specifying one or more remote(s) to fetch from.
Defaults to false.
</p>
</dd>
<dt class="hdlist1">
fetch.output
</dt>
<dd>
Expand Down
16 changes: 14 additions & 2 deletions git-fetch.html
Original file line number Diff line number Diff line change
Expand Up @@ -787,11 +787,12 @@ <h2 id="_options">OPTIONS</h2>
<div class="sectionbody">
<div class="dlist"><dl>
<dt class="hdlist1">
--all
--[no-]all
</dt>
<dd>
<p>
Fetch all remotes.
Fetch all remotes. This overrides the configuration variable
<code>fetch.all</code>.
</p>
</dd>
<dt class="hdlist1">
Expand Down Expand Up @@ -2108,6 +2109,17 @@ <h2 id="_configuration">CONFIGURATION</h2>
</p>
</dd>
<dt class="hdlist1">
fetch.all
</dt>
<dd>
<p>
If true, fetch will attempt to update all available remotes.
This behavior can be overridden by passing <code>--no-all</code> or by
explicitly specifying one or more remote(s) to fetch from.
Defaults to false.
</p>
</dd>
<dt class="hdlist1">
fetch.output
</dt>
<dd>
Expand Down
5 changes: 3 additions & 2 deletions git-pull.html
Original file line number Diff line number Diff line change
Expand Up @@ -1179,11 +1179,12 @@ <h3 id="_options_related_to_merging">Options related to merging</h3>
<h3 id="_options_related_to_fetching">Options related to fetching</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
--all
--[no-]all
</dt>
<dd>
<p>
Fetch all remotes.
Fetch all remotes. This overrides the configuration variable
<code>fetch.all</code>.
</p>
</dd>
<dt class="hdlist1">
Expand Down
2 changes: 1 addition & 1 deletion git-remote-helpers.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>git-remote-helpers</h1>
<span id="revdate">2024-01-16</span>
<span id="revdate">2024-01-19</span>
</div>
<div id="content">
<div id="preamble">
Expand Down
2 changes: 1 addition & 1 deletion howto/coordinate-embargoed-releases.html
Original file line number Diff line number Diff line change
Expand Up @@ -1038,7 +1038,7 @@ <h3 id="_example_mail_to_a_href_mailto_oss_security_lists_openwall_com_oss_secur
<div id="footer">
<div id="footer-text">
Last updated
2024-01-16 12:42:11 PST
2024-01-19 16:48:09 PST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/keep-canonical-history-correct.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>Keep authoritative canonical history correct with git pull</h1>
<span id="revdate">2024-01-16</span>
<span id="revdate">2024-01-19</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -939,7 +939,7 @@ <h1>Keep authoritative canonical history correct with git pull</h1>
<div id="footer">
<div id="footer-text">
Last updated
2024-01-16 12:42:11 PST
2024-01-19 16:48:09 PST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/maintain-git.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>How to maintain Git</h1>
<span id="revdate">2024-01-16</span>
<span id="revdate">2024-01-19</span>
</div>
<div id="content">
<div class="sect1">
Expand Down Expand Up @@ -1479,7 +1479,7 @@ <h3 id="_preparing_a_merge_fix">Preparing a "merge-fix"</h3>
<div id="footer">
<div id="footer-text">
Last updated
2024-01-16 12:42:11 PST
2024-01-19 16:48:09 PST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/new-command.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>How to integrate new subcommands</h1>
<span id="revdate">2024-01-16</span>
<span id="revdate">2024-01-19</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -864,7 +864,7 @@ <h2 id="_integrating_a_command">Integrating a command</h2>
<div id="footer">
<div id="footer-text">
Last updated
2024-01-16 12:42:09 PST
2024-01-19 16:48:07 PST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/rebase-from-internal-branch.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>How to rebase from an internal branch</h1>
<span id="revdate">2024-01-16</span>
<span id="revdate">2024-01-19</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -896,7 +896,7 @@ <h1>How to rebase from an internal branch</h1>
<div id="footer">
<div id="footer-text">
Last updated
2024-01-16 12:42:11 PST
2024-01-19 16:48:09 PST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/rebuild-from-update-hook.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>How to rebuild from update hook</h1>
<span id="revdate">2024-01-16</span>
<span id="revdate">2024-01-19</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -848,7 +848,7 @@ <h1>How to rebuild from update hook</h1>
<div id="footer">
<div id="footer-text">
Last updated
2024-01-16 12:42:11 PST
2024-01-19 16:48:09 PST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/recover-corrupted-blob-object.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>How to recover a corrupted blob object</h1>
<span id="revdate">2024-01-16</span>
<span id="revdate">2024-01-19</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -881,7 +881,7 @@ <h1>How to recover a corrupted blob object</h1>
<div id="footer">
<div id="footer-text">
Last updated
2024-01-16 12:42:10 PST
2024-01-19 16:48:08 PST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/recover-corrupted-object-harder.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>How to recover an object from scratch</h1>
<span id="revdate">2024-01-16</span>
<span id="revdate">2024-01-19</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -1190,7 +1190,7 @@ <h2 id="_the_adventure_continues_8230">The adventure continues&#8230;</h2>
<div id="footer">
<div id="footer-text">
Last updated
2024-01-16 12:42:10 PST
2024-01-19 16:48:08 PST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/revert-a-faulty-merge.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>How to revert a faulty merge</h1>
<span id="revdate">2024-01-16</span>
<span id="revdate">2024-01-19</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -1026,7 +1026,7 @@ <h1>How to revert a faulty merge</h1>
<div id="footer">
<div id="footer-text">
Last updated
2024-01-16 12:42:10 PST
2024-01-19 16:48:08 PST
</div>
</div>
</body>
Expand Down
Loading

0 comments on commit 8c9d882

Please sign in to comment.