Skip to content

Commit 253a665

Browse files
committed
Autogenerated HTML docs for v2.48.1-329-ge2067
1 parent 3a4d1b7 commit 253a665

11 files changed

+307
-149
lines changed

RelNotes/2.49.0.txt

+22
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ UI, Workflows & Features
66

77
* Completion script updates for zsh
88

9+
* "git pack-objects" and its wrapper "git repack" learned an option
10+
to use an alternative path-hash function to improve delta-base
11+
selection to produce a packfile with deeper history than window
12+
size.
13+
14+
* "git gc" learned the "--expire-to" option and passes it down to
15+
underlying "git repack".
16+
17+
* "[help] autocorrect = 1" used to be a way to say "please wait for
18+
0.1 second after suggesting a typofix of the command name before
19+
running that command"; now it means "yes, if there is a plausible
20+
typofix for the command name, please run it immediately".
21+
922

1023
Performance, Internal Implementation, Development Support etc.
1124
--------------------------------------------------------------
@@ -34,6 +47,9 @@ Performance, Internal Implementation, Development Support etc.
3447
* The code paths to interact with zlib has been cleaned up in
3548
preparation for building with zlib-ng.
3649

50+
* Foreign language interface for Rust into our code base has been added.
51+
52+
3753

3854
Fixes since v2.48
3955
-----------------
@@ -151,6 +167,11 @@ Fixes since v2.48
151167
has been corrected.
152168
(merge acc4fb302b jt/gitlab-ci-base-fix later to maint).
153169

170+
* "git repack --keep-unreachable" to send unreachable objects to the
171+
main pack "git repack -ad" produces did not work when there is no
172+
existing packs, which has been corrected.
173+
(merge 414c82300a ps/repack-keep-unreachable-in-unpacked-repo later to maint).
174+
154175
* Other code cleanup, docfix, build fix, etc.
155176
(merge ddb5287894 jk/t7407-use-test-grep later to maint).
156177
(merge 21e1b44865 aj/difftool-config-doc-fix later to maint).
@@ -164,3 +185,4 @@ Fixes since v2.48
164185
(merge 6979bf6f8f jk/combine-diff-cleanup later to maint).
165186
(merge 8705c9bd13 kn/pack-write-with-reduced-globals later to maint).
166187
(merge 087740d65a ps/leakfixes-0129 later to maint).
188+
(merge 6bba6f604b jp/doc-trailer-config later to maint).

config.txt

+2
Original file line numberDiff line numberDiff line change
@@ -540,6 +540,8 @@ include::config/tar.txt[]
540540

541541
include::config/trace2.txt[]
542542

543+
include::config/trailer.txt[]
544+
543545
include::config/transfer.txt[]
544546

545547
include::config/uploadarchive.txt[]

git-config.html

+176-6
Original file line numberDiff line numberDiff line change
@@ -5676,22 +5676,23 @@ <h3 id="_variables">Variables</h3>
56765676
<div class="ulist">
56775677
<ul>
56785678
<li>
5679-
<p>0 (default): show the suggested command.</p>
5679+
<p>0, "false", "off", "no", "show": show the suggested command (default).</p>
56805680
</li>
56815681
<li>
5682-
<p>positive number: run the suggested command after specified
5682+
<p>1, "true", "on", "yes", "immediate": run the suggested command
5683+
immediately.</p>
5684+
</li>
5685+
<li>
5686+
<p>positive number &gt; 1: run the suggested command after specified
56835687
deciseconds (0.1 sec).</p>
56845688
</li>
56855689
<li>
5686-
<p>"immediate": run the suggested command immediately.</p>
5690+
<p>"never": don&#8217;t run or show any suggested command.</p>
56875691
</li>
56885692
<li>
56895693
<p>"prompt": show the suggestion and prompt for confirmation to run
56905694
the command.</p>
56915695
</li>
5692-
<li>
5693-
<p>"never": don&#8217;t run or show any suggested command.</p>
5694-
</li>
56955696
</ul>
56965697
</div>
56975698
</dd>
@@ -8959,6 +8960,175 @@ <h3 id="_variables">Variables</h3>
89598960
write a sentinel file that will block further tracing to this
89608961
directory. Defaults to 0, which disables this check.</p>
89618962
</dd>
8963+
<dt class="hdlist1">trailer.separators</dt>
8964+
<dd>
8965+
<p>This option tells which characters are recognized as trailer
8966+
separators. By default only <em>:</em> is recognized as a trailer
8967+
separator, except that <em>=</em> is always accepted on the command
8968+
line for compatibility with other git commands.</p>
8969+
<div class="paragraph">
8970+
<p>The first character given by this option will be the default character
8971+
used when another separator is not specified in the config for this
8972+
trailer.</p>
8973+
</div>
8974+
<div class="paragraph">
8975+
<p>For example, if the value for this option is "%=$", then only lines
8976+
using the format <em>&lt;key&gt;&lt;sep&gt;&lt;value&gt;</em> with &lt;sep&gt; containing <em>%</em>, <em>=</em>
8977+
or <em>$</em> and then spaces will be considered trailers. And <em>%</em> will be
8978+
the default separator used, so by default trailers will appear like:
8979+
<em>&lt;key&gt;% &lt;value&gt;</em> (one percent sign and one space will appear between
8980+
the key and the value).</p>
8981+
</div>
8982+
</dd>
8983+
<dt class="hdlist1">trailer.where</dt>
8984+
<dd>
8985+
<p>This option tells where a new trailer will be added.</p>
8986+
<div class="paragraph">
8987+
<p>This can be <code>end</code>, which is the default, <code>start</code>, <code>after</code> or <code>before</code>.</p>
8988+
</div>
8989+
<div class="paragraph">
8990+
<p>If it is <code>end</code>, then each new trailer will appear at the end of the
8991+
existing trailers.</p>
8992+
</div>
8993+
<div class="paragraph">
8994+
<p>If it is <code>start</code>, then each new trailer will appear at the start,
8995+
instead of the end, of the existing trailers.</p>
8996+
</div>
8997+
<div class="paragraph">
8998+
<p>If it is <code>after</code>, then each new trailer will appear just after the
8999+
last trailer with the same &lt;key&gt;.</p>
9000+
</div>
9001+
<div class="paragraph">
9002+
<p>If it is <code>before</code>, then each new trailer will appear just before the
9003+
first trailer with the same &lt;key&gt;.</p>
9004+
</div>
9005+
</dd>
9006+
<dt class="hdlist1">trailer.ifexists</dt>
9007+
<dd>
9008+
<p>This option makes it possible to choose what action will be
9009+
performed when there is already at least one trailer with the
9010+
same &lt;key&gt; in the input.</p>
9011+
<div class="paragraph">
9012+
<p>The valid values for this option are: <code>addIfDifferentNeighbor</code> (this
9013+
is the default), <code>addIfDifferent</code>, <code>add</code>, <code>replace</code> or <code>doNothing</code>.</p>
9014+
</div>
9015+
<div class="paragraph">
9016+
<p>With <code>addIfDifferentNeighbor</code>, a new trailer will be added only if no
9017+
trailer with the same (&lt;key&gt;, &lt;value&gt;) pair is above or below the line
9018+
where the new trailer will be added.</p>
9019+
</div>
9020+
<div class="paragraph">
9021+
<p>With <code>addIfDifferent</code>, a new trailer will be added only if no trailer
9022+
with the same (&lt;key&gt;, &lt;value&gt;) pair is already in the input.</p>
9023+
</div>
9024+
<div class="paragraph">
9025+
<p>With <code>add</code>, a new trailer will be added, even if some trailers with
9026+
the same (&lt;key&gt;, &lt;value&gt;) pair are already in the input.</p>
9027+
</div>
9028+
<div class="paragraph">
9029+
<p>With <code>replace</code>, an existing trailer with the same &lt;key&gt; will be
9030+
deleted and the new trailer will be added. The deleted trailer will be
9031+
the closest one (with the same &lt;key&gt;) to the place where the new one
9032+
will be added.</p>
9033+
</div>
9034+
<div class="paragraph">
9035+
<p>With <code>doNothing</code>, nothing will be done; that is no new trailer will be
9036+
added if there is already one with the same &lt;key&gt; in the input.</p>
9037+
</div>
9038+
</dd>
9039+
<dt class="hdlist1">trailer.ifmissing</dt>
9040+
<dd>
9041+
<p>This option makes it possible to choose what action will be
9042+
performed when there is not yet any trailer with the same
9043+
&lt;key&gt; in the input.</p>
9044+
<div class="paragraph">
9045+
<p>The valid values for this option are: <code>add</code> (this is the default) and
9046+
<code>doNothing</code>.</p>
9047+
</div>
9048+
<div class="paragraph">
9049+
<p>With <code>add</code>, a new trailer will be added.</p>
9050+
</div>
9051+
<div class="paragraph">
9052+
<p>With <code>doNothing</code>, nothing will be done.</p>
9053+
</div>
9054+
</dd>
9055+
<dt class="hdlist1">trailer.&lt;keyAlias&gt;.key</dt>
9056+
<dd>
9057+
<p>Defines a &lt;keyAlias&gt; for the &lt;key&gt;. The &lt;keyAlias&gt; must be a
9058+
prefix (case does not matter) of the &lt;key&gt;. For example, in <code>git</code>
9059+
<code>config</code> <code>trailer.ack.key</code> "Acked-by" the "Acked-by" is the &lt;key&gt; and
9060+
the "ack" is the &lt;keyAlias&gt;. This configuration allows the shorter
9061+
<code>--trailer</code> "ack:<code>...</code>" invocation on the command line using the "ack"
9062+
&lt;keyAlias&gt; instead of the longer <code>--trailer</code> "Acked-by:<code>...</code>".</p>
9063+
<div class="paragraph">
9064+
<p>At the end of the &lt;key&gt;, a separator can appear and then some
9065+
space characters. By default the only valid separator is <em>:</em>,
9066+
but this can be changed using the <code>trailer.separators</code> config
9067+
variable.</p>
9068+
</div>
9069+
<div class="paragraph">
9070+
<p>If there is a separator in the key, then it overrides the default
9071+
separator when adding the trailer.</p>
9072+
</div>
9073+
</dd>
9074+
<dt class="hdlist1">trailer.&lt;keyAlias&gt;.where</dt>
9075+
<dd>
9076+
<p>This option takes the same values as the <em>trailer.where</em>
9077+
configuration variable and it overrides what is specified by
9078+
that option for trailers with the specified &lt;keyAlias&gt;.</p>
9079+
</dd>
9080+
<dt class="hdlist1">trailer.&lt;keyAlias&gt;.ifexists</dt>
9081+
<dd>
9082+
<p>This option takes the same values as the <em>trailer.ifexists</em>
9083+
configuration variable and it overrides what is specified by
9084+
that option for trailers with the specified &lt;keyAlias&gt;.</p>
9085+
</dd>
9086+
<dt class="hdlist1">trailer.&lt;keyAlias&gt;.ifmissing</dt>
9087+
<dd>
9088+
<p>This option takes the same values as the <em>trailer.ifmissing</em>
9089+
configuration variable and it overrides what is specified by
9090+
that option for trailers with the specified &lt;keyAlias&gt;.</p>
9091+
</dd>
9092+
<dt class="hdlist1">trailer.&lt;keyAlias&gt;.command</dt>
9093+
<dd>
9094+
<p>Deprecated in favor of <em>trailer.&lt;keyAlias&gt;.cmd</em>.
9095+
This option behaves in the same way as <em>trailer.&lt;keyAlias&gt;.cmd</em>, except
9096+
that it doesn&#8217;t pass anything as argument to the specified command.
9097+
Instead the first occurrence of substring $ARG is replaced by the
9098+
&lt;value&gt; that would be passed as argument.</p>
9099+
<div class="paragraph">
9100+
<p>Note that $ARG in the user&#8217;s command is
9101+
only replaced once and that the original way of replacing $ARG is not safe.</p>
9102+
</div>
9103+
<div class="paragraph">
9104+
<p>When both <em>trailer.&lt;keyAlias&gt;.cmd</em> and <em>trailer.&lt;keyAlias&gt;.command</em> are given
9105+
for the same &lt;keyAlias&gt;, <em>trailer.&lt;keyAlias&gt;.cmd</em> is used and
9106+
<em>trailer.&lt;keyAlias&gt;.command</em> is ignored.</p>
9107+
</div>
9108+
</dd>
9109+
<dt class="hdlist1">trailer.&lt;keyAlias&gt;.cmd</dt>
9110+
<dd>
9111+
<p>This option can be used to specify a shell command that will be called
9112+
once to automatically add a trailer with the specified &lt;keyAlias&gt;, and then
9113+
called each time a <em>--trailer &lt;keyAlias&gt;=&lt;value&gt;</em> argument is specified to
9114+
modify the &lt;value&gt; of the trailer that this option would produce.</p>
9115+
<div class="paragraph">
9116+
<p>When the specified command is first called to add a trailer
9117+
with the specified &lt;keyAlias&gt;, the behavior is as if a special
9118+
<em>--trailer &lt;keyAlias&gt;=&lt;value&gt;</em> argument was added at the beginning
9119+
of the "git interpret-trailers" command, where &lt;value&gt;
9120+
is taken to be the standard output of the command with any
9121+
leading and trailing whitespace trimmed off.</p>
9122+
</div>
9123+
<div class="paragraph">
9124+
<p>If some <em>--trailer &lt;keyAlias&gt;=&lt;value&gt;</em> arguments are also passed
9125+
on the command line, the command is called again once for each
9126+
of these arguments with the same &lt;keyAlias&gt;. And the &lt;value&gt; part
9127+
of these arguments, if any, will be passed to the command as its
9128+
first argument. This way the command can produce a &lt;value&gt; computed
9129+
from the &lt;value&gt; passed in the <em>--trailer &lt;keyAlias&gt;=&lt;value&gt;</em> argument.</p>
9130+
</div>
9131+
</dd>
89629132
<dt class="hdlist1">transfer.credentialsInUrl</dt>
89639133
<dd>
89649134
<p>A configured URL can contain plaintext credentials in the form

git-gc.html

+9-1
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,14 @@ <h2 id="_options">OPTIONS</h2>
528528
the <code>--max-cruft-size</code> option of <a href="git-repack.html">git-repack(1)</a> for
529529
more.</p>
530530
</dd>
531+
<dt class="hdlist1">--expire-to=&lt;dir&gt;</dt>
532+
<dd>
533+
<p>When packing unreachable objects into a cruft pack, write a cruft
534+
pack containing pruned objects (if any) to the directory <em>&lt;dir&gt;</em>.
535+
This option only has an effect when used together with <code>--cruft</code>.
536+
See the <code>--expire-to</code> option of <a href="git-repack.html">git-repack(1)</a> for
537+
more information.</p>
538+
</dd>
531539
<dt class="hdlist1">--prune=&lt;date&gt;</dt>
532540
<dd>
533541
<p>Prune loose objects older than date (default is 2 weeks ago,
@@ -892,7 +900,7 @@ <h2 id="_git">GIT</h2>
892900
</div>
893901
<div id="footer">
894902
<div id="footer-text">
895-
Last updated 2024-08-26 15:45:16 -0700
903+
Last updated 2025-02-12 10:11:31 -0800
896904
</div>
897905
</div>
898906
</body>

git-gc.txt

+7
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,13 @@ be performed as well.
6969
the `--max-cruft-size` option of linkgit:git-repack[1] for
7070
more.
7171

72+
--expire-to=<dir>::
73+
When packing unreachable objects into a cruft pack, write a cruft
74+
pack containing pruned objects (if any) to the directory `<dir>`.
75+
This option only has an effect when used together with `--cruft`.
76+
See the `--expire-to` option of linkgit:git-repack[1] for
77+
more information.
78+
7279
--prune=<date>::
7380
Prune loose objects older than date (default is 2 weeks ago,
7481
overridable by the config variable `gc.pruneExpire`).

git-interpret-trailers.html

+6-1
Original file line numberDiff line numberDiff line change
@@ -670,6 +670,11 @@ <h2 id="_options">OPTIONS</h2>
670670
<div class="sect1">
671671
<h2 id="_configuration_variables">CONFIGURATION VARIABLES</h2>
672672
<div class="sectionbody">
673+
<div class="paragraph">
674+
<p>Everything below this line in this section is selectively included
675+
from the <a href="git-config.html">git-config(1)</a> documentation. The content is the same
676+
as what&#8217;s found there:</p>
677+
</div>
673678
<div class="dlist">
674679
<dl>
675680
<dt class="hdlist1">trailer.separators</dt>
@@ -1079,7 +1084,7 @@ <h2 id="_git">GIT</h2>
10791084
</div>
10801085
<div id="footer">
10811086
<div id="footer-text">
1082-
Last updated 2024-03-25 17:24:49 -0700
1087+
Last updated 2025-02-12 10:11:31 -0800
10831088
</div>
10841089
</div>
10851090
</body>

0 commit comments

Comments
 (0)