]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Yet another batch of post 2.45.2 updates from the 'master' front
authorJunio C Hamano <gitster@pobox.com>
Tue, 2 Jul 2024 16:04:10 +0000 (09:04 -0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 2 Jul 2024 16:27:59 +0000 (09:27 -0700)
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/RelNotes/2.45.3.txt

index 90098d2536f2d5999aedddd6df5cf98c5dd90659..2a1e9aa60879aaddb03644ed5431977ab7b3c2bd 100644 (file)
@@ -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.