Skip to content

Commit f6adedd

Browse files
committed
Autogenerated HTML docs for v2.47.0-rc0-18-ge9356b
1 parent d42b271 commit f6adedd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+101
-59
lines changed

DecisionMaking.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>Decision-Making Process in the Git Project</h1>
444444
<div class="details">
445-
<span id="revdate">2024-09-25</span>
445+
<span id="revdate">2024-09-30</span>
446446
</div>
447447
</div>
448448
<div id="content">

MyFirstContribution.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>My First Contribution to the Git Project</h1>
444444
<div class="details">
445-
<span id="revdate">2024-09-25</span>
445+
<span id="revdate">2024-09-30</span>
446446
</div>
447447
</div>
448448
<div id="content">

MyFirstObjectWalk.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>My First Object Walk</h1>
444444
<div class="details">
445-
<span id="revdate">2024-09-25</span>
445+
<span id="revdate">2024-09-30</span>
446446
</div>
447447
</div>
448448
<div id="content">

RelNotes/2.47.0.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,9 @@ Performance, Internal Implementation, Development Support etc.
159159
* CI updates. FreeBSD image has been updated to 13.4.
160160
(merge 2eeb29702e cb/ci-freebsd-13-4 later to maint).
161161

162+
* Give timeout to the locking code to write to reftable, instead of
163+
failing on the first failure without retrying.
164+
162165

163166
Fixes since v2.46
164167
-----------------
@@ -293,6 +296,27 @@ Fixes since v2.46
293296
been corrected.
294297
(merge 9a41735af6 rs/diff-exit-code-binary later to maint).
295298

299+
* When a subprocess to work in a submodule spawned by "git submodule"
300+
fails with SIGPIPE, the parent Git process caught the death of it,
301+
but gave a generic "failed to work in that submodule", which was
302+
misleading. We now behave as if the parent got SIGPIPE and die.
303+
(merge 082caf527e pw/submodule-process-sigpipe later to maint).
304+
305+
* "git archive" with pathspec magic that uses the attribute
306+
information did not work well, which has been corrected.
307+
(merge 296743a7ca rs/archive-with-attr-pathspec-fix later to maint).
308+
309+
* Background tasks "git maintenance" runs may need to use credential
310+
information when going over the network, but a credential helper
311+
may work only in an interactive environment, and end up blocking a
312+
scheduled task waiting for UI. Credential helpers can now behave
313+
differently when they are not running interactively.
314+
(merge b9183b0a02 ds/background-maintenance-with-credential later to maint).
315+
316+
* "git --git-dir=nowhere cmd" failed to properly notice that it
317+
wasn't in any repository while processing includeIf.onbranch
318+
configuration and instead crashed.
319+
296320
* Other code cleanup, docfix, build fix, etc.
297321
(merge be10ac7037 jc/mailinfo-header-cleanup later to maint).
298322
(merge 4460e052e0 jc/range-diff-lazy-setup later to maint).

ReviewingGuidelines.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>Reviewing Patches in the Git Project</h1>
444444
<div class="details">
445-
<span id="revdate">2024-09-25</span>
445+
<span id="revdate">2024-09-30</span>
446446
</div>
447447
</div>
448448
<div id="content">

SubmittingPatches.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>Submitting Patches</h1>
444444
<div class="details">
445-
<span id="revdate">2024-09-25</span>
445+
<span id="revdate">2024-09-30</span>
446446
</div>
447447
</div>
448448
<div id="content">

ToolsForGit.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>Tools for developing Git</h1>
444444
<div class="details">
445-
<span id="revdate">2024-09-25</span>
445+
<span id="revdate">2024-09-30</span>
446446
</div>
447447
</div>
448448
<div id="content">

everyday.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>Everyday Git With 20 Commands Or So</h1>
444444
<div class="details">
445-
<span id="revdate">2024-09-25</span>
445+
<span id="revdate">2024-09-30</span>
446446
</div>
447447
</div>
448448
<div id="content">

git-config.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3878,6 +3878,15 @@ <h3 id="_variables">Variables</h3>
38783878
for details and examples.</p>
38793879
</div>
38803880
</dd>
3881+
<dt class="hdlist1">credential.interactive</dt>
3882+
<dd>
3883+
<p>By default, Git and any configured credential helpers will ask for
3884+
user input when new credentials are required. Many of these helpers
3885+
will succeed based on stored credentials if those credentials are
3886+
still valid. To avoid the possibility of user interactivity from
3887+
Git, set <code>credential.interactive=false</code>. Some credential helpers
3888+
respect this option as well.</p>
3889+
</dd>
38813890
<dt class="hdlist1">credential.useHttpPath</dt>
38823891
<dd>
38833892
<p>When acquiring credentials, consider the "path" component of an http
@@ -7903,6 +7912,15 @@ <h3 id="_variables">Variables</h3>
79037912
of 256 is supported.</p>
79047913
</div>
79057914
</dd>
7915+
<dt class="hdlist1">reftable.lockTimeout</dt>
7916+
<dd>
7917+
<p>Whenever the reftable backend appends a new table to the stack, it has
7918+
to lock the central "tables.list" file before updating it. This config
7919+
controls how long the process will wait to acquire the lock in case
7920+
another process has already acquired it. Value 0 means not to retry at
7921+
all; -1 means to try indefinitely. Default is 100 (i.e., retry for
7922+
100ms).</p>
7923+
</dd>
79067924
<dt class="hdlist1">remote.pushDefault</dt>
79077925
<dd>
79087926
<p>The remote to push to by default. Overrides

git-remote-helpers.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>git-remote-helpers</h1>
444444
<div class="details">
445-
<span id="revdate">2024-09-25</span>
445+
<span id="revdate">2024-09-30</span>
446446
</div>
447447
</div>
448448
<div id="content">

0 commit comments

Comments
 (0)