Skip to content

Commit 0dfbbf3

Browse files
committed
Autogenerated HTML docs for v2.47.1-440-gcaacd
1 parent d7114bd commit 0dfbbf3

Some content is hidden

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

51 files changed

+134
-62
lines changed

DecisionMaking.html

+1-1
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-12-06</span>
445+
<span id="revdate">2024-12-10</span>
446446
</div>
447447
</div>
448448
<div id="content">

MyFirstContribution.html

+1-1
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-12-06</span>
445+
<span id="revdate">2024-12-10</span>
446446
</div>
447447
</div>
448448
<div id="content">

MyFirstObjectWalk.html

+1-1
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-12-06</span>
445+
<span id="revdate">2024-12-10</span>
446446
</div>
447447
</div>
448448
<div id="content">

RelNotes/2.48.0.txt

+20
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ UI, Workflows & Features
2121

2222
* Drop support for older libcURL and Perl.
2323

24+
* End-user experience of "git mergetool" when the command errors out
25+
has been improved.
26+
2427

2528
Performance, Internal Implementation, Development Support etc.
2629
--------------------------------------------------------------
@@ -107,6 +110,14 @@ Performance, Internal Implementation, Development Support etc.
107110
* Built-in Git subcommands are supplied the repository object to work
108111
with; they learned to do the same when they invoke sub-subcommands.
109112

113+
* Drop support for ancient environments in various CI jobs.
114+
115+
* Isolates the reftable subsystem from the rest of Git's codebase by
116+
using fewer pieces of Git's infrastructure.
117+
118+
* Optimize reading random references out of the reftable backend by
119+
allowing reuse of iterator objects.
120+
110121

111122
Fixes since v2.47
112123
-----------------
@@ -204,6 +215,15 @@ Fixes since v2.47
204215

205216
* The sequencer failed to honor core.commentString in some places.
206217

218+
* Describe a case where an option value needs to be spelled as a
219+
separate argument, i.e. "--opt val", not "--opt=val".
220+
(merge 1bc1e94091 jc/doc-opt-tilde-expand later to maint).
221+
222+
* Loosen overly strict ownership check introduced in the recent past,
223+
to keep the promise "cloning a suspicious repository is a safe
224+
first step to inspect it".
225+
(merge 0ffb5a6bf1 bc/allow-upload-pack-from-other-people later to maint).
226+
207227
* Other code cleanup, docfix, build fix, etc.
208228
(merge 77af53f56f aa/t7300-modernize later to maint).
209229
(merge dcd590a39d bf/t-readme-mention-reftable later to maint).

ReviewingGuidelines.html

+1-1
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-12-06</span>
445+
<span id="revdate">2024-12-10</span>
446446
</div>
447447
</div>
448448
<div id="content">

SubmittingPatches.html

+1-1
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-12-06</span>
445+
<span id="revdate">2024-12-10</span>
446446
</div>
447447
</div>
448448
<div id="content">

ToolsForGit.html

+1-1
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-12-06</span>
445+
<span id="revdate">2024-12-10</span>
446446
</div>
447447
</div>
448448
<div id="content">

everyday.html

+1-1
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-12-06</span>
445+
<span id="revdate">2024-12-10</span>
446446
</div>
447447
</div>
448448
<div id="content">

git-clone.html

+13-1
Original file line numberDiff line numberDiff line change
@@ -517,6 +517,10 @@ <h2 id="_options">OPTIONS</h2>
517517
links.</p>
518518
</div>
519519
<div class="paragraph">
520+
<p>This option does not work with repositories owned by other users for security
521+
reasons, and <code>--no-local</code> must be specified for the clone to succeed.</p>
522+
</div>
523+
<div class="paragraph">
520524
<p><strong>NOTE</strong>: this operation can race with concurrent modification to the
521525
source repository, similar to running <code>cp</code> <code>-r</code> <em>&lt;src&gt;</em> <em>&lt;dst&gt;</em> while modifying
522526
<em>&lt;src&gt;</em>.</p>
@@ -1054,6 +1058,14 @@ <h2 id="_examples">EXAMPLES</h2>
10541058
</div>
10551059
</div>
10561060
</li>
1061+
<li>
1062+
<p>Clone a local repository from a different user:</p>
1063+
<div class="listingblock">
1064+
<div class="content">
1065+
<pre>$ git clone --no-local /home/otheruser/proj.git /pub/scm/proj.git</pre>
1066+
</div>
1067+
</div>
1068+
</li>
10571069
</ul>
10581070
</div>
10591071
</div>
@@ -1124,7 +1136,7 @@ <h2 id="_git">GIT</h2>
11241136
</div>
11251137
<div id="footer">
11261138
<div id="footer-text">
1127-
Last updated 2024-11-16 17:03:36 +0900
1139+
Last updated 2024-12-10 21:07:44 +0900
11281140
</div>
11291141
</div>
11301142
</body>

git-clone.txt

+9
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ symbolic link, the clone will fail. This is a security measure to
6363
prevent the unintentional copying of files by dereferencing the symbolic
6464
links.
6565
+
66+
This option does not work with repositories owned by other users for security
67+
reasons, and `--no-local` must be specified for the clone to succeed.
68+
+
6669
*NOTE*: this operation can race with concurrent modification to the
6770
source repository, similar to running `cp -r <src> <dst>` while modifying
6871
_<src>_.
@@ -384,6 +387,12 @@ $ cd my-linux
384387
$ git clone --bare -l /home/proj/.git /pub/scm/proj.git
385388
------------
386389

390+
* Clone a local repository from a different user:
391+
+
392+
------------
393+
$ git clone --no-local /home/otheruser/proj.git /pub/scm/proj.git
394+
------------
395+
387396
CONFIGURATION
388397
-------------
389398

git-remote-helpers.html

+1-1
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-12-06</span>
445+
<span id="revdate">2024-12-10</span>
446446
</div>
447447
</div>
448448
<div id="content">

gitcli.html

+11-1
Original file line numberDiff line numberDiff line change
@@ -557,6 +557,16 @@ <h2 id="_description">DESCRIPTION</h2>
557557
written in the <em>stuck</em> form.</p>
558558
</li>
559559
<li>
560+
<p>Despite the above suggestion, when Arg is a path relative to the
561+
home directory of a user, e.g. ~/directory/file or ~u/d/f, you
562+
may want to use the separate form, e.g. <code>git</code> <code>foo</code> <code>--file</code> <code>~/mine</code>,
563+
not <code>git</code> <code>foo</code> <code>--file=~/mine</code>. The shell will expand <code>~/</code> in the
564+
former to your home directory, but most shells keep the tilde in
565+
the latter. Some of our commands know how to tilde-expand the
566+
option value even when given in the stuck form, but not all of
567+
them do.</p>
568+
</li>
569+
<li>
560570
<p>When you give a revision parameter to a command, make sure the parameter is
561571
not ambiguous with a name of a file in the work tree. E.g. do not write
562572
<code>git</code> <code>log</code> <code>-1</code> <code>HEAD</code> but write <code>git</code> <code>log</code> <code>-1</code> <code>HEAD</code> <code>--</code>; the former will not work
@@ -760,7 +770,7 @@ <h2 id="_git">GIT</h2>
760770
</div>
761771
<div id="footer">
762772
<div id="footer-text">
763-
Last updated 2024-03-11 15:39:49 -0700
773+
Last updated 2024-12-10 21:07:44 +0900
764774
</div>
765775
</div>
766776
</body>

gitcli.txt

+9
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,15 @@ scripting Git:
9090
for long options. An option that takes optional option-argument must be
9191
written in the 'stuck' form.
9292

93+
* Despite the above suggestion, when Arg is a path relative to the
94+
home directory of a user, e.g. ~/directory/file or ~u/d/f, you
95+
may want to use the separate form, e.g. `git foo --file ~/mine`,
96+
not `git foo --file=~/mine`. The shell will expand `~/` in the
97+
former to your home directory, but most shells keep the tilde in
98+
the latter. Some of our commands know how to tilde-expand the
99+
option value even when given in the stuck form, but not all of
100+
them do.
101+
93102
* When you give a revision parameter to a command, make sure the parameter is
94103
not ambiguous with a name of a file in the work tree. E.g. do not write
95104
`git log -1 HEAD` but write `git log -1 HEAD --`; the former will not work

gitcredentials.html

+7-1
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,12 @@ <h2 id="_custom_helpers">CUSTOM HELPERS</h2>
764764
[credential]
765765
helper = "foo --bar='whitespace arg'"
766766

767+
# store helper (discouraged) with custom location for the db file;
768+
# use `--file ~/.git-secret.txt`, rather than `--file=~/.git-secret.txt`,
769+
# to allow the shell to expand tilde to the home directory.
770+
[credential]
771+
helper = "store --file ~/.git-secret.txt"
772+
767773
# you can also use an absolute path, which will not use the git wrapper
768774
[credential]
769775
helper = "/path/to/my/helper --with-arguments"
@@ -858,7 +864,7 @@ <h2 id="_git">GIT</h2>
858864
</div>
859865
<div id="footer">
860866
<div id="footer-text">
861-
Last updated 2023-07-18 08:52:58 -0700
867+
Last updated 2024-12-10 21:07:44 +0900
862868
</div>
863869
</div>
864870
</body>

gitcredentials.txt

+6
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,12 @@ Here are some example specifications:
242242
[credential]
243243
helper = "foo --bar='whitespace arg'"
244244

245+
# store helper (discouraged) with custom location for the db file;
246+
# use `--file ~/.git-secret.txt`, rather than `--file=~/.git-secret.txt`,
247+
# to allow the shell to expand tilde to the home directory.
248+
[credential]
249+
helper = "store --file ~/.git-secret.txt"
250+
245251
# you can also use an absolute path, which will not use the git wrapper
246252
[credential]
247253
helper = "/path/to/my/helper --with-arguments"

howto/keep-canonical-history-correct.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>Keep authoritative canonical history correct with git pull</h1>
444444
<div class="details">
445-
<span id="revdate">2024-12-06</span>
445+
<span id="revdate">2024-12-10</span>
446446
</div>
447447
</div>
448448
<div id="content">
@@ -705,7 +705,7 @@ <h1>Keep authoritative canonical history correct with git pull</h1>
705705
</div>
706706
<div id="footer">
707707
<div id="footer-text">
708-
Last updated 2024-12-06 15:11:00 +0900
708+
Last updated 2024-12-10 21:08:08 +0900
709709
</div>
710710
</div>
711711
</body>

howto/maintain-git.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>How to maintain Git</h1>
444444
<div class="details">
445-
<span id="revdate">2024-12-06</span>
445+
<span id="revdate">2024-12-10</span>
446446
</div>
447447
</div>
448448
<div id="content">
@@ -1326,7 +1326,7 @@ <h3 id="_preparing_a_merge_fix">Preparing a "merge-fix"</h3>
13261326
</div>
13271327
<div id="footer">
13281328
<div id="footer-text">
1329-
Last updated 2024-12-06 15:11:00 +0900
1329+
Last updated 2024-12-10 21:08:09 +0900
13301330
</div>
13311331
</div>
13321332
</body>

howto/new-command.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>How to integrate new subcommands</h1>
444444
<div class="details">
445-
<span id="revdate">2024-12-06</span>
445+
<span id="revdate">2024-12-10</span>
446446
</div>
447447
</div>
448448
<div id="content">
@@ -584,7 +584,7 @@ <h2 id="_integrating_a_command">Integrating a command</h2>
584584
</div>
585585
<div id="footer">
586586
<div id="footer-text">
587-
Last updated 2024-12-06 15:10:59 +0900
587+
Last updated 2024-12-10 21:08:07 +0900
588588
</div>
589589
</div>
590590
</body>

howto/rebase-from-internal-branch.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>How to rebase from an internal branch</h1>
444444
<div class="details">
445-
<span id="revdate">2024-12-06</span>
445+
<span id="revdate">2024-12-10</span>
446446
</div>
447447
</div>
448448
<div id="content">
@@ -656,7 +656,7 @@ <h1>How to rebase from an internal branch</h1>
656656
</div>
657657
<div id="footer">
658658
<div id="footer-text">
659-
Last updated 2024-12-06 15:11:00 +0900
659+
Last updated 2024-12-10 21:08:08 +0900
660660
</div>
661661
</div>
662662
</body>

howto/rebuild-from-update-hook.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>How to rebuild from update hook</h1>
444444
<div class="details">
445-
<span id="revdate">2024-12-06</span>
445+
<span id="revdate">2024-12-10</span>
446446
</div>
447447
</div>
448448
<div id="content">
@@ -563,7 +563,7 @@ <h1>How to rebuild from update hook</h1>
563563
</div>
564564
<div id="footer">
565565
<div id="footer-text">
566-
Last updated 2024-12-06 15:11:00 +0900
566+
Last updated 2024-12-10 21:08:08 +0900
567567
</div>
568568
</div>
569569
</body>

howto/recover-corrupted-blob-object.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>How to recover a corrupted blob object</h1>
444444
<div class="details">
445-
<span id="revdate">2024-12-06</span>
445+
<span id="revdate">2024-12-10</span>
446446
</div>
447447
</div>
448448
<div id="content">
@@ -641,7 +641,7 @@ <h1>How to recover a corrupted blob object</h1>
641641
</div>
642642
<div id="footer">
643643
<div id="footer-text">
644-
Last updated 2024-12-06 15:11:00 +0900
644+
Last updated 2024-12-10 21:08:08 +0900
645645
</div>
646646
</div>
647647
</body>

howto/recover-corrupted-object-harder.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>How to recover an object from scratch</h1>
444444
<div class="details">
445-
<span id="revdate">2024-12-06</span>
445+
<span id="revdate">2024-12-10</span>
446446
</div>
447447
</div>
448448
<div id="content">
@@ -967,7 +967,7 @@ <h2 id="_the_adventure_continues">The adventure continues&#8230;&#8203;</h2>
967967
</div>
968968
<div id="footer">
969969
<div id="footer-text">
970-
Last updated 2024-12-06 15:11:00 +0900
970+
Last updated 2024-12-10 21:08:08 +0900
971971
</div>
972972
</div>
973973
</body>

howto/revert-a-faulty-merge.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>How to revert a faulty merge</h1>
444444
<div class="details">
445-
<span id="revdate">2024-12-06</span>
445+
<span id="revdate">2024-12-10</span>
446446
</div>
447447
</div>
448448
<div id="content">
@@ -829,7 +829,7 @@ <h1>How to revert a faulty merge</h1>
829829
</div>
830830
<div id="footer">
831831
<div id="footer-text">
832-
Last updated 2024-12-06 15:10:59 +0900
832+
Last updated 2024-12-10 21:08:08 +0900
833833
</div>
834834
</div>
835835
</body>

0 commit comments

Comments
 (0)