Skip to content

Commit

Permalink
Autogenerated HTML docs for v2.47.0-rc0-18-ge9356b
Browse files Browse the repository at this point in the history
  • Loading branch information
gitster committed Oct 1, 2024
1 parent d42b271 commit f6adedd
Show file tree
Hide file tree
Showing 46 changed files with 101 additions and 59 deletions.
2 changes: 1 addition & 1 deletion DecisionMaking.html
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@
<div id="header">
<h1>Decision-Making Process in the Git Project</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down
2 changes: 1 addition & 1 deletion MyFirstContribution.html
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@
<div id="header">
<h1>My First Contribution to the Git Project</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down
2 changes: 1 addition & 1 deletion MyFirstObjectWalk.html
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@
<div id="header">
<h1>My First Object Walk</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down
24 changes: 24 additions & 0 deletions RelNotes/2.47.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,9 @@ Performance, Internal Implementation, Development Support etc.
* CI updates. FreeBSD image has been updated to 13.4.
(merge 2eeb29702e cb/ci-freebsd-13-4 later to maint).

* Give timeout to the locking code to write to reftable, instead of
failing on the first failure without retrying.


Fixes since v2.46
-----------------
Expand Down Expand Up @@ -293,6 +296,27 @@ Fixes since v2.46
been corrected.
(merge 9a41735af6 rs/diff-exit-code-binary later to maint).

* When a subprocess to work in a submodule spawned by "git submodule"
fails with SIGPIPE, the parent Git process caught the death of it,
but gave a generic "failed to work in that submodule", which was
misleading. We now behave as if the parent got SIGPIPE and die.
(merge 082caf527e pw/submodule-process-sigpipe later to maint).

* "git archive" with pathspec magic that uses the attribute
information did not work well, which has been corrected.
(merge 296743a7ca rs/archive-with-attr-pathspec-fix later to maint).

* Background tasks "git maintenance" runs may need to use credential
information when going over the network, but a credential helper
may work only in an interactive environment, and end up blocking a
scheduled task waiting for UI. Credential helpers can now behave
differently when they are not running interactively.
(merge b9183b0a02 ds/background-maintenance-with-credential later to maint).

* "git --git-dir=nowhere cmd" failed to properly notice that it
wasn't in any repository while processing includeIf.onbranch
configuration and instead crashed.

* Other code cleanup, docfix, build fix, etc.
(merge be10ac7037 jc/mailinfo-header-cleanup later to maint).
(merge 4460e052e0 jc/range-diff-lazy-setup later to maint).
Expand Down
2 changes: 1 addition & 1 deletion ReviewingGuidelines.html
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@
<div id="header">
<h1>Reviewing Patches in the Git Project</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down
2 changes: 1 addition & 1 deletion SubmittingPatches.html
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@
<div id="header">
<h1>Submitting Patches</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down
2 changes: 1 addition & 1 deletion ToolsForGit.html
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@
<div id="header">
<h1>Tools for developing Git</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down
2 changes: 1 addition & 1 deletion everyday.html
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@
<div id="header">
<h1>Everyday Git With 20 Commands Or So</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down
18 changes: 18 additions & 0 deletions git-config.html
Original file line number Diff line number Diff line change
Expand Up @@ -3878,6 +3878,15 @@ <h3 id="_variables">Variables</h3>
for details and examples.</p>
</div>
</dd>
<dt class="hdlist1">credential.interactive</dt>
<dd>
<p>By default, Git and any configured credential helpers will ask for
user input when new credentials are required. Many of these helpers
will succeed based on stored credentials if those credentials are
still valid. To avoid the possibility of user interactivity from
Git, set <code>credential.interactive=false</code>. Some credential helpers
respect this option as well.</p>
</dd>
<dt class="hdlist1">credential.useHttpPath</dt>
<dd>
<p>When acquiring credentials, consider the "path" component of an http
Expand Down Expand Up @@ -7903,6 +7912,15 @@ <h3 id="_variables">Variables</h3>
of 256 is supported.</p>
</div>
</dd>
<dt class="hdlist1">reftable.lockTimeout</dt>
<dd>
<p>Whenever the reftable backend appends a new table to the stack, it has
to lock the central "tables.list" file before updating it. This config
controls how long the process will wait to acquire the lock in case
another process has already acquired it. Value 0 means not to retry at
all; -1 means to try indefinitely. Default is 100 (i.e., retry for
100ms).</p>
</dd>
<dt class="hdlist1">remote.pushDefault</dt>
<dd>
<p>The remote to push to by default. Overrides
Expand Down
2 changes: 1 addition & 1 deletion git-remote-helpers.html
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@
<div id="header">
<h1>git-remote-helpers</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
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 @@ -442,7 +442,7 @@
<div id="header">
<h1>Keep authoritative canonical history correct with git pull</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down Expand Up @@ -705,7 +705,7 @@ <h1>Keep authoritative canonical history correct with git pull</h1>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-09-26 09:33:40 -0700
Last updated 2024-10-01 00:30:00 -0700
</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 @@ -442,7 +442,7 @@
<div id="header">
<h1>How to maintain Git</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down Expand Up @@ -1242,7 +1242,7 @@ <h3 id="_preparing_a_merge_fix">Preparing a "merge-fix"</h3>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-09-26 09:33:40 -0700
Last updated 2024-10-01 00:30:00 -0700
</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 @@ -442,7 +442,7 @@
<div id="header">
<h1>How to integrate new subcommands</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down Expand Up @@ -584,7 +584,7 @@ <h2 id="_integrating_a_command">Integrating a command</h2>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-09-26 09:33:39 -0700
Last updated 2024-10-01 00:29:59 -0700
</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 @@ -442,7 +442,7 @@
<div id="header">
<h1>How to rebase from an internal branch</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down Expand Up @@ -656,7 +656,7 @@ <h1>How to rebase from an internal branch</h1>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-09-26 09:33:40 -0700
Last updated 2024-10-01 00:30:00 -0700
</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 @@ -442,7 +442,7 @@
<div id="header">
<h1>How to rebuild from update hook</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down Expand Up @@ -563,7 +563,7 @@ <h1>How to rebuild from update hook</h1>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-09-26 09:33:40 -0700
Last updated 2024-10-01 00:30:00 -0700
</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 @@ -442,7 +442,7 @@
<div id="header">
<h1>How to recover a corrupted blob object</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down Expand Up @@ -641,7 +641,7 @@ <h1>How to recover a corrupted blob object</h1>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-09-26 09:33:40 -0700
Last updated 2024-10-01 00:30:00 -0700
</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 @@ -442,7 +442,7 @@
<div id="header">
<h1>How to recover an object from scratch</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down Expand Up @@ -967,7 +967,7 @@ <h2 id="_the_adventure_continues">The adventure continues&#8230;&#8203;</h2>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-09-26 09:33:40 -0700
Last updated 2024-10-01 00:30:00 -0700
</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 @@ -442,7 +442,7 @@
<div id="header">
<h1>How to revert a faulty merge</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down Expand Up @@ -829,7 +829,7 @@ <h1>How to revert a faulty merge</h1>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-09-26 09:33:40 -0700
Last updated 2024-10-01 00:29:59 -0700
</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 @@ -442,7 +442,7 @@
<div id="header">
<h1>How to revert an existing commit</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down Expand Up @@ -649,7 +649,7 @@ <h1>How to revert an existing commit</h1>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-09-26 09:33:39 -0700
Last updated 2024-10-01 00:29:59 -0700
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/separating-topic-branches.html
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@
<div id="header">
<h1>How to separate topic branches</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down Expand Up @@ -568,7 +568,7 @@ <h1>How to separate topic branches</h1>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-09-26 09:33:40 -0700
Last updated 2024-10-01 00:29:59 -0700
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/setup-git-server-over-http.html
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@
<div id="header">
<h1>How to setup Git server over http</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down Expand Up @@ -882,7 +882,7 @@ <h2 id="_troubleshooting">Troubleshooting:</h2>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-09-26 09:33:40 -0700
Last updated 2024-10-01 00:29:59 -0700
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/update-hook-example.html
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@
<div id="header">
<h1>How to use the update hook</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down Expand Up @@ -648,7 +648,7 @@ <h1>How to use the update hook</h1>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-09-26 09:33:39 -0700
Last updated 2024-10-01 00:29:59 -0700
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/use-git-daemon.html
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@
<div id="header">
<h1>How to use git-daemon</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down Expand Up @@ -524,7 +524,7 @@ <h1>How to use git-daemon</h1>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-09-26 09:33:39 -0700
Last updated 2024-10-01 00:29:59 -0700
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/using-merge-subtree.html
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@
<div id="header">
<h1>How to use the subtree merge strategy</h1>
<div class="details">
<span id="revdate">2024-09-25</span>
<span id="revdate">2024-09-30</span>
</div>
</div>
<div id="content">
Expand Down Expand Up @@ -554,7 +554,7 @@ <h2 id="_additional_tips">Additional tips</h2>
</div>
<div id="footer">
<div id="footer-text">
Last updated 2024-09-26 09:33:39 -0700
Last updated 2024-10-01 00:29:59 -0700
</div>
</div>
</body>
Expand Down
Loading

0 comments on commit f6adedd

Please sign in to comment.