summaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-07-02 18:04:10 +0200
committerJunio C Hamano <gitster@pobox.com>2024-07-02 18:27:59 +0200
commitc2b3f2b3cdbf5ad9feb978dd367d77561a1271f7 (patch)
tree6c9795bd5e00a44b70b1c8e29b13ccd2847b6812 /Documentation
parentMerge branch 'rs/remove-unused-find-header-mem' into maint-2.45 (diff)
downloadgit-c2b3f2b3cdbf5ad9feb978dd367d77561a1271f7.tar.xz
git-c2b3f2b3cdbf5ad9feb978dd367d77561a1271f7.zip
Yet another batch of post 2.45.2 updates from the 'master' front
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/RelNotes/2.45.3.txt27
1 files changed, 27 insertions, 0 deletions
diff --git a/Documentation/RelNotes/2.45.3.txt b/Documentation/RelNotes/2.45.3.txt
index 90098d2536..2a1e9aa608 100644
--- a/Documentation/RelNotes/2.45.3.txt
+++ b/Documentation/RelNotes/2.45.3.txt
@@ -77,4 +77,31 @@ Fixes since v2.45.2
* Varargs functions that are unannotated as printf-like or execl-like
have been annotated as such.
+ * The "-k" and "--rfc" options of "format-patch" will now error out
+ when used together, as one tells us not to add anything to the
+ title of the commit, and the other one tells us to add "RFC" in
+ addition to "PATCH".
+
+ * When the user adds to "git rebase -i" instruction to "pick" a merge
+ commit, the error experience is not pleasant. Such an error is now
+ caught earlier in the process that parses the todo list.
+
+ * We forgot to normalize the result of getcwd() to NFC on macOS where
+ all other paths are normalized, which has been corrected. This still
+ does not address the case where core.precomposeUnicode configuration
+ is not defined globally.
+
+ * Earlier we stopped using the tree of HEAD as the default source of
+ attributes in a bare repository, but failed to document it. This
+ has been corrected.
+
+ * An unused extern declaration for mingw has been removed to prevent
+ it from causing build failure.
+
+ * A helper function shared between two tests had a copy-paste bug,
+ which has been corrected.
+
+ * "git fetch-pack -k -k" without passing "--lock-pack" (which we
+ never do ourselves) did not work at all, which has been corrected.
+
Also contains various documentation updates and code clean-ups.