Skip to content

Commit

Permalink
Autogenerated HTML docs for v2.44.0-rc0-46-g2996f
Browse files Browse the repository at this point in the history
  • Loading branch information
gitster committed Feb 12, 2024
1 parent 4cb1af2 commit cf1a7e1
Show file tree
Hide file tree
Showing 50 changed files with 113 additions and 75 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-02-08</span>
<span id="revdate">2024-02-12</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-02-08</span>
<span id="revdate">2024-02-12</span>
</div>
<div id="content">
<div class="sect1">
Expand Down
24 changes: 24 additions & 0 deletions RelNotes/2.44.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,14 @@ UI, Workflows & Features
refresh token the same way as credential-cache and
credential-libsecret backends.

* Command line completion support (in contrib/) has been
updated for "git bisect".

* "git branch" and friends learned to use the formatted text as
sorting key, not the underlying timestamp value, when the --sort
option is used with author or committer timestamp with a format
specifier (e.g., "--sort=creatordate:format:%H:%M:%S").


Performance, Internal Implementation, Development Support etc.

Expand Down Expand Up @@ -151,6 +159,9 @@ Performance, Internal Implementation, Development Support etc.
* The priority queue test has been migrated to the unit testing
framework.

* Setting `feature.experimental` opts the user into multi-pack reuse
experiment


Fixes since v2.43
-----------------
Expand Down Expand Up @@ -279,6 +290,17 @@ Fixes since v2.43
as <ptr, length> with a wrong length, which has been corrected.
(merge 156e28b36d jh/sparse-index-expand-to-path-fix later to maint).

* A failed "git tag -s" did not necessarily result in an error
depending on the crypto backend, which has been corrected.
(merge 6931049c32 jc/sign-buffer-failure-propagation-fix later to maint).

* "git stash" sometimes was silent even when it failed due to
unwritable index file, which has been corrected.
(merge d2058cb2f0 ps/report-failure-from-git-stash later to maint).

* "git show-ref --verify" did not show things like "CHERRY_PICK_HEAD",
which has been corrected.

* Other code cleanup, docfix, build fix, etc.
(merge 5aea3955bc rj/clarify-branch-doc-m later to maint).
(merge 9cce3be2df bk/bisect-doc-fix later to maint).
Expand All @@ -293,3 +315,5 @@ Fixes since v2.43
(merge 36c9c44fa4 tb/pack-bitmap-drop-unused-struct-member later to maint).
(merge 19ed0dff8f js/win32-retry-pipe-write-on-enospc later to maint).
(merge 3cb4384683 jc/t0091-with-unknown-git later to maint).
(merge 841dbd40a3 jc/bisect-doc later to maint).
(merge 78307f1a89 pb/template-for-single-commit-pr 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-02-08</span>
<span id="revdate">2024-02-12</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-02-08</span>
<span id="revdate">2024-02-12</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-02-08</span>
<span id="revdate">2024-02-12</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-02-08</span>
<span id="revdate">2024-02-12</span>
</div>
<div id="content">
<div id="preamble">
Expand Down
12 changes: 7 additions & 5 deletions git-bisect.html
Original file line number Diff line number Diff line change
Expand Up @@ -761,11 +761,11 @@ <h2 id="_description">DESCRIPTION</h2>
on the subcommand:</p></div>
<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;]
<pre><code>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 | --term-bad]
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)
Expand Down Expand Up @@ -887,8 +887,10 @@ <h3 id="_alternate_terms">Alternate terms</h3>
<div class="content">
<pre><code>git bisect terms</code></pre>
</div></div>
<div class="paragraph"><p>You can get just the old (respectively new) term with <code>git bisect terms
--term-old</code> or <code>git bisect terms --term-good</code>.</p></div>
<div class="paragraph"><p>You can get just the old term with <code>git bisect terms --term-old</code>
or <code>git bisect terms --term-good</code>; <code>git bisect terms --term-new</code>
and <code>git bisect terms --term-bad</code> can be used to learn how to call
the commits more recent than the sought change.</p></div>
<div class="paragraph"><p>If you would like to use your own terms instead of "bad"/"good" or
"new"/"old", you can choose any names you like (except existing bisect
subcommands like <code>reset</code>, <code>start</code>, &#8230;) by starting the
Expand Down Expand Up @@ -1244,7 +1246,7 @@ <h2 id="_git">GIT</h2>
<div id="footer">
<div id="footer-text">
Last updated
2024-01-19 16:47:36 PST
2024-02-12 13:29:13 PST
</div>
</div>
</body>
Expand Down
10 changes: 6 additions & 4 deletions git-bisect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ DESCRIPTION
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>]
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 | --term-bad]
git bisect terms [--term-(good|old) | --term-(bad|new)]
git bisect skip [(<rev>|<range>)...]
git bisect reset [<commit>]
git bisect (visualize|view)
Expand Down Expand Up @@ -165,8 +165,10 @@ To get a reminder of the currently used terms, use
git bisect terms
------------------------------------------------

You can get just the old (respectively new) term with `git bisect terms
--term-old` or `git bisect terms --term-good`.
You can get just the old term with `git bisect terms --term-old`
or `git bisect terms --term-good`; `git bisect terms --term-new`
and `git bisect terms --term-bad` can be used to learn how to call
the commits more recent than the sought change.

If you would like to use your own terms instead of "bad"/"good" or
"new"/"old", you can choose any names you like (except existing bisect
Expand Down
6 changes: 6 additions & 0 deletions git-config.html
Original file line number Diff line number Diff line change
Expand Up @@ -5514,6 +5514,12 @@ <h3 id="_variables">Variables</h3>
walking fewer objects.
</p>
</li>
<li>
<p>
<code>pack.allowPackReuse=multi</code> may improve the time it takes to create a pack by
reusing objects from multiple packs instead of just one.
</p>
</li>
</ul></div>
</dd>
<dt class="hdlist1">
Expand Down
10 changes: 6 additions & 4 deletions git-for-each-ref.html
Original file line number Diff line number Diff line change
Expand Up @@ -1347,9 +1347,11 @@ <h2 id="_field_names">FIELD NAMES</h2>
<div class="paragraph"><p>In any case, a field name that refers to a field inapplicable to
the object referred by the ref does not cause an error. It
returns an empty string instead.</p></div>
<div class="paragraph"><p>As a special case for the date-type fields, you may specify a format for
the date by adding <code>:</code> followed by date format name (see the
values the <code>--date</code> option to <a href="git-rev-list.html">git-rev-list(1)</a> takes).</p></div>
<div class="paragraph"><p>As a special case for the date-type fields, you may specify a format for the
date by adding <code>:</code> followed by date format name (see the values the <code>--date</code>
option to <a href="git-rev-list.html">git-rev-list(1)</a> takes). If this formatting is provided in
a <code>--sort</code> key, references will be sorted according to the byte-value of the
formatted string rather than the numeric value of the underlying timestamp.</p></div>
<div class="paragraph"><p>Some atoms like %(align) and %(if) always require a matching %(end).
We call them "opening atoms" and sometimes denote them as %($open).</p></div>
<div class="paragraph"><p>When a scripting language specific quoting is in effect, everything
Expand Down Expand Up @@ -1497,7 +1499,7 @@ <h2 id="_git">GIT</h2>
<div id="footer">
<div id="footer-text">
Last updated
2023-12-09 17:40:53 PST
2024-02-12 13:29:13 PST
</div>
</div>
</body>
Expand Down
8 changes: 5 additions & 3 deletions git-for-each-ref.txt
Original file line number Diff line number Diff line change
Expand Up @@ -359,9 +359,11 @@ In any case, a field name that refers to a field inapplicable to
the object referred by the ref does not cause an error. It
returns an empty string instead.

As a special case for the date-type fields, you may specify a format for
the date by adding `:` followed by date format name (see the
values the `--date` option to linkgit:git-rev-list[1] takes).
As a special case for the date-type fields, you may specify a format for the
date by adding `:` followed by date format name (see the values the `--date`
option to linkgit:git-rev-list[1] takes). If this formatting is provided in
a `--sort` key, references will be sorted according to the byte-value of the
formatted string rather than the numeric value of the underlying timestamp.

Some atoms like %(align) and %(if) always require a matching %(end).
We call them "opening atoms" and sometimes denote them as %($open).
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-02-08</span>
<span id="revdate">2024-02-12</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-02-09 07:54:18 PST
2024-02-12 13:29:35 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-02-08</span>
<span id="revdate">2024-02-12</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-02-09 07:54:18 PST
2024-02-12 13:29:35 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-02-08</span>
<span id="revdate">2024-02-12</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-02-09 07:54:18 PST
2024-02-12 13:29:35 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-02-08</span>
<span id="revdate">2024-02-12</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-02-09 07:54:17 PST
2024-02-12 13:29:33 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-02-08</span>
<span id="revdate">2024-02-12</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-02-09 07:54:18 PST
2024-02-12 13:29:35 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-02-08</span>
<span id="revdate">2024-02-12</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-02-09 07:54:18 PST
2024-02-12 13:29:35 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-02-08</span>
<span id="revdate">2024-02-12</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-02-09 07:54:18 PST
2024-02-12 13:29:34 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-02-08</span>
<span id="revdate">2024-02-12</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-02-09 07:54:18 PST
2024-02-12 13:29:35 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-02-08</span>
<span id="revdate">2024-02-12</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-02-09 07:54:18 PST
2024-02-12 13:29:34 PST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/revert-branch-rebase.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 an existing commit</h1>
<span id="revdate">2024-02-08</span>
<span id="revdate">2024-02-12</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -908,7 +908,7 @@ <h1>How to revert an existing commit</h1>
<div id="footer">
<div id="footer-text">
Last updated
2024-02-09 07:54:17 PST
2024-02-12 13:29:34 PST
</div>
</div>
</body>
Expand Down
Loading

0 comments on commit cf1a7e1

Please sign in to comment.