Skip to content

Commit 06e570c

Browse files
committed
Sync with 'maint'
2 parents c2ad9d6 + c2b3f2b commit 06e570c

File tree

2 files changed

+27
-9
lines changed

2 files changed

+27
-9
lines changed

Documentation/RelNotes/2.45.3.txt

+27
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,31 @@ Fixes since v2.45.2
7777
* Varargs functions that are unannotated as printf-like or execl-like
7878
have been annotated as such.
7979

80+
* The "-k" and "--rfc" options of "format-patch" will now error out
81+
when used together, as one tells us not to add anything to the
82+
title of the commit, and the other one tells us to add "RFC" in
83+
addition to "PATCH".
84+
85+
* When the user adds to "git rebase -i" instruction to "pick" a merge
86+
commit, the error experience is not pleasant. Such an error is now
87+
caught earlier in the process that parses the todo list.
88+
89+
* We forgot to normalize the result of getcwd() to NFC on macOS where
90+
all other paths are normalized, which has been corrected. This still
91+
does not address the case where core.precomposeUnicode configuration
92+
is not defined globally.
93+
94+
* Earlier we stopped using the tree of HEAD as the default source of
95+
attributes in a bare repository, but failed to document it. This
96+
has been corrected.
97+
98+
* An unused extern declaration for mingw has been removed to prevent
99+
it from causing build failure.
100+
101+
* A helper function shared between two tests had a copy-paste bug,
102+
which has been corrected.
103+
104+
* "git fetch-pack -k -k" without passing "--lock-pack" (which we
105+
never do ourselves) did not work at all, which has been corrected.
106+
80107
Also contains various documentation updates and code clean-ups.

Documentation/RelNotes/2.46.0.txt

-9
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,6 @@ Fixes since v2.45
217217
when used together, as one tells us not to add anything to the
218218
title of the commit, and the other one tells us to add "RFC" in
219219
addition to "PATCH".
220-
(merge cadcf58085 ds/format-patch-rfc-and-k later to maint).
221220

222221
* "git stash -S" did not handle binary files correctly, which has
223222
been corrected.
@@ -317,34 +316,28 @@ Fixes since v2.45
317316
* When the user adds to "git rebase -i" instruction to "pick" a merge
318317
commit, the error experience is not pleasant. Such an error is now
319318
caught earlier in the process that parses the todo list.
320-
(merge 4c063c82e9 pw/rebase-i-error-message later to maint).
321319

322320
* We forgot to normalize the result of getcwd() to NFC on macOS where
323321
all other paths are normalized, which has been corrected. This still
324322
does not address the case where core.precomposeUnicode configuration
325323
is not defined globally.
326-
(merge 71fa8d2212 tb/precompose-getcwd later to maint).
327324

328325
* Earlier we stopped using the tree of HEAD as the default source of
329326
attributes in a bare repository, but failed to document it. This
330327
has been corrected.
331-
(merge 5c71d6b63a jc/no-default-attr-tree-in-bare later to maint).
332328

333329
* "git update-server-info" and "git commit-graph --write" have been
334330
updated to use the tempfile API to avoid leaving cruft after
335331
failing.
336332

337333
* An unused extern declaration for mingw has been removed to prevent
338334
it from causing build failure.
339-
(merge 3c295c87c2 js/mingw-remove-unused-extern-decl later to maint).
340335

341336
* A helper function shared between two tests had a copy-paste bug,
342337
which has been corrected.
343-
(merge 40d817875d jk/t5500-typofix later to maint).
344338

345339
* "git fetch-pack -k -k" without passing "--lock-pack" (which we
346340
never do ourselves) did not work at all, which has been corrected.
347-
(merge 96a6621d25 jk/fetch-pack-fsck-wo-lock-pack later to maint).
348341

349342
* CI job to build minimum fuzzers learned to pass NO_CURL=NoThanks to
350343
the build procedure, as its build environment does not offer, or
@@ -356,6 +349,4 @@ Fixes since v2.45
356349
(merge 0f4b0d4cf0 rs/diff-color-moved-w-no-ext-diff-fix later to maint).
357350

358351
* Other code cleanup, docfix, build fix, etc.
359-
(merge bf6a86236e jc/worktree-git-path later to maint).
360-
(merge 28dc26dc33 rs/remove-unused-find-header-mem later to maint).
361352
(merge 493fdae046 ew/object-convert-leakfix later to maint).

0 commit comments

Comments
 (0)