Skip to content

Commit c40c474

Browse files
committed
Autogenerated HTML docs for v2.45.2-492-gd6358
1 parent 34d886d commit c40c474

Some content is hidden

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

47 files changed

+84
-61
lines changed

DecisionMaking.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>Decision-Making Process in the Git Project</h1>
738-
<span id="revdate">2024-06-10</span>
738+
<span id="revdate">2024-06-12</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

MyFirstContribution.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>My First Contribution to the Git Project</h1>
738-
<span id="revdate">2024-06-10</span>
738+
<span id="revdate">2024-06-12</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

MyFirstObjectWalk.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>My First Object Walk</h1>
738-
<span id="revdate">2024-06-10</span>
738+
<span id="revdate">2024-06-12</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

RelNotes/2.46.0.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,21 @@ Performance, Internal Implementation, Development Support etc.
119119

120120
* The alias-expanded command lines are logged to the trace output.
121121

122+
* A new test was added to ensure git commands that are designed to
123+
run outside repositories do work.
124+
125+
* Basic unit tests for reftable have been reimplemented under the
126+
unit test framework.
127+
128+
* A pair of test helpers that essentially are unit tests on hash
129+
algorithms have been rewritten using the unit-tests framework.
130+
131+
* A test helper that essentially is unit tests on the "decorate"
132+
logic has been rewritten using the unit-tests framework.
133+
134+
* Many memory leaks in the sparse-checkout code paths have been
135+
plugged.
136+
122137

123138
Fixes since v2.45
124139
-----------------
@@ -214,6 +229,13 @@ Fixes since v2.45
214229

215230
* Memory leaks in "git mv" has been plugged.
216231

232+
* The safe.directory configuration knob has been updated to
233+
optionally allow leading path matches.
234+
(merge 313eec177a jc/safe-directory-leading-path later to maint).
235+
236+
* An overly large ".gitignore" files are now rejected silently.
237+
(merge e7c3d1ddba jk/cap-exclude-file-size later to maint).
238+
217239
* Other code cleanup, docfix, build fix, etc.
218240
(merge a5a4cb7b27 rs/diff-parseopts-cleanup later to maint).
219241
(merge 55702c543e fa/p4-error later to maint).

ReviewingGuidelines.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>Reviewing Patches in the Git Project</h1>
738-
<span id="revdate">2024-06-10</span>
738+
<span id="revdate">2024-06-12</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

SubmittingPatches.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>Submitting Patches</h1>
738-
<span id="revdate">2024-06-10</span>
738+
<span id="revdate">2024-06-12</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

ToolsForGit.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>Tools for developing Git</h1>
738-
<span id="revdate">2024-06-10</span>
738+
<span id="revdate">2024-06-12</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

everyday.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>Everyday Git With 20 Commands Or So</h1>
738-
<span id="revdate">2024-06-10</span>
738+
<span id="revdate">2024-06-12</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">

git-config.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10752,7 +10752,8 @@ <h3 id="_variables">Variables</h3>
1075210752
directory was listed in the <code>safe.directory</code> list. If <code>safe.directory=*</code>
1075310753
is set in system config and you want to re-enable this protection, then
1075410754
initialize your list with an empty value before listing the repositories
10755-
that you deem safe.</p></div>
10755+
that you deem safe. Giving a directory with <code>/*</code> appended to it will
10756+
allow access to all repositories under the named directory.</p></div>
1075610757
<div class="paragraph"><p>As explained, Git only allows you to access repositories owned by
1075710758
yourself, i.e. the user who is running Git, by default. When Git
1075810759
is running as <em>root</em> in a non Windows platform that provides sudo,

git-remote-helpers.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>git-remote-helpers</h1>
738-
<span id="revdate">2024-06-10</span>
738+
<span id="revdate">2024-06-12</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">

0 commit comments

Comments
 (0)