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

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

RelNotes/2.48.0.txt

Lines changed: 20 additions & 0 deletions
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

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

git-clone.html

Lines changed: 13 additions & 1 deletion
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

Lines changed: 9 additions & 0 deletions
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

0 commit comments

Comments
 (0)