Skip to content

Commit 210f01b

Browse files
committed
Autogenerated HTML docs for v2.46.1-506-ged155
1 parent 4c32b83 commit 210f01b

Some content is hidden

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

56 files changed

+162
-91
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-12</span>
445+
<span id="revdate">2024-09-13</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-12</span>
445+
<span id="revdate">2024-09-13</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-12</span>
445+
<span id="revdate">2024-09-13</span>
446446
</div>
447447
</div>
448448
<div id="content">

RelNotes/2.46.1.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,13 @@ Fixes since Git 2.46
6363
* "git bundle unbundle" outside a repository triggered a BUG()
6464
unnecessarily, which has been corrected.
6565

66+
* The code forgot to discard unnecessary in-core commit buffer data
67+
for commits that "git log --skip=<number>" traversed but omitted
68+
from the output, which has been corrected.
69+
70+
* "git verify-pack" and "git index-pack" started dying outside a
71+
repository, which has been corrected.
72+
73+
* A corner case bug in "git stash" was fixed.
74+
6675
Also contains minor documentation updates and code clean-ups.

RelNotes/2.47.0.txt

Lines changed: 22 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@ UI, Workflows & Features
5959
added by these helper functions, but many existing messages had an
6060
unnecessary LF at the end, which have been corrected.
6161

62+
* The "scalar clone" command learned the "--no-tags" option.
63+
64+
* The environment GIT_ADVICE has been intentionally kept undocumented
65+
to discourage its use by interactive users. Add documentation to
66+
help tool writers.
6267

6368
Performance, Internal Implementation, Development Support etc.
6469
--------------------------------------------------------------
@@ -157,7 +162,6 @@ Fixes since v2.46
157162
corrected.
158163

159164
* More leakfixes.
160-
(merge f30bfafcd4 ps/leakfixes-part-3 later to maint).
161165

162166
* The credential helper to talk to OSX keychain sometimes sent
163167
garbage bytes after the username, which has been corrected.
@@ -167,7 +171,6 @@ Fixes since v2.46
167171

168172
* The patch parser in 'git apply' has been a bit more lenient against
169173
unexpected mode bits, like 100664, recorded on extended header lines.
170-
(merge e95d515141 jk/apply-patch-mode-check-fix later to maint).
171174

172175
* "git config --value=foo --fixed-value section.key newvalue" barfed
173176
when the existing value in the configuration file used the
@@ -176,7 +179,6 @@ Fixes since v2.46
176179
* The patch parser in "git patch-id" has been tightened to avoid
177180
getting confused by lines that look like a patch header in the log
178181
message.
179-
(merge a6e9429f72 jc/patch-id later to maint).
180182

181183
* "git reflog expire" failed to honor annotated tags when computing
182184
reachable commits.
@@ -192,7 +194,6 @@ Fixes since v2.46
192194

193195
* "git bundle unbundle" outside a repository triggered a BUG()
194196
unnecessarily, which has been corrected.
195-
(merge 96a9a3e42e ps/bundle-outside-repo-fix later to maint).
196197

197198
* Maintenance tasks other than "gc" now properly go background when
198199
"git maintenance" runs them.
@@ -210,11 +211,9 @@ Fixes since v2.46
210211
* The code forgot to discard unnecessary in-core commit buffer data
211212
for commits that "git log --skip=<number>" traversed but omitted
212213
from the output, which has been corrected.
213-
(merge 6bd2ae67a5 jk/free-commit-buffer-of-skipped-commits later to maint).
214214

215215
* "git verify-pack" and "git index-pack" started dying outside a
216216
repository, which has been corrected.
217-
(merge b2dbf97f47 ps/index-pack-outside-repo-fix later to maint).
218217

219218
* A data corruption bug when multi-pack-index is used and the same
220219
objects are stored in multiple packfiles has been corrected.
@@ -223,15 +222,22 @@ Fixes since v2.46
223222
which has been a bit tamed.
224223
(merge c3459ae9ef ps/pack-refs-auto-heuristics later to maint).
225224

225+
* A file descriptor left open is now properly closed when "git
226+
sparse-checkout" updates the sparse patterns.
227+
228+
* In a few corner cases "git diff --exit-code" failed to report
229+
"changes" (e.g., renamed without any content change), which has
230+
been corrected.
231+
(merge 11591850dd rs/diff-exit-code-fix later to maint).
232+
233+
* Cygwin does have /dev/tty support that is needed by things like
234+
single-key input mode.
235+
(merge 39ba986b0e rj/cygwin-has-dev-tty later to maint).
236+
237+
* The interpret-trailers command failed to recognise the end of the
238+
message when the commit log ends in an incomplete line.
239+
(merge c02414a997 bl/trailers-and-incomplete-last-line-fix later to maint).
240+
226241
* Other code cleanup, docfix, build fix, etc.
227-
(merge bb0498b1bb jc/how-to-maintain-updates later to maint).
228-
(merge 0d66f601a9 jc/tests-no-useless-tee later to maint).
229-
(merge 170cdfc5a4 jc/grammo-fixes later to maint).
230-
(merge 983555a1f2 jc/how-to-maintain-updates later to maint).
231-
(merge e3209bd4df ps/stash-keep-untrack-empty-fix later to maint).
232-
(merge 44db6f75cc jc/coding-style-c-operator-with-spaces later to maint).
233-
(merge 596f4ff6ad cl/config-regexp-docfix later to maint).
234-
(merge 4881328617 aa/cat-file-batch-output-doc later to maint).
235-
(merge 1609470409 jc/config-doc-update later to maint).
236-
(merge d4dc0efd7d rj/compat-terminal-unused-fix later to maint).
237242
(merge be10ac7037 jc/mailinfo-header-cleanup later to maint).
243+
(merge 9a36ea37ae jc/doc-skip-fetch-all-and-prefetch 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-12</span>
445+
<span id="revdate">2024-09-13</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-12</span>
445+
<span id="revdate">2024-09-13</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-12</span>
445+
<span id="revdate">2024-09-13</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-12</span>
445+
<span id="revdate">2024-09-13</span>
446446
</div>
447447
</div>
448448
<div id="content">

fetch-options.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
--[no-]all::
2-
Fetch all remotes. This overrides the configuration variable
3-
`fetch.all`.
2+
Fetch all remotes, except for the ones that has the
3+
`remote.<name>.skipFetchAll` configuration variable set.
4+
This overrides the configuration variable fetch.all`.
45

56
-a::
67
--append::

0 commit comments

Comments
 (0)