A bit more for -rc2
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Junio C Hamano committed
Apr 9, 2026 at 11:21 UTC
60f07c4f5c5f81c8a994d9e06b31a4a3a1679864
1 file changed
+11
Documentation/RelNotes/2.54.0.adoc
+11
@@ -124,6 +124,9 @@ UI, Workflows & Features
124
* Handling of signed commits and tags in fast-import has been made more
125
configurable.
126
127
+ * "git config list" is the official way to spell "git config -l" and
128
+ "git config --list". Use it to update the documentation.
129
+
130
131
Performance, Internal Implementation, Development Support etc.
132
--------------------------------------------------------------
@@ -316,6 +319,14 @@ Performance, Internal Implementation, Development Support etc.
319
log/diff machinery is being reworked a bit to make the feature
320
compatible with more diff options, like -S/G.
321
322
+ * Further work to adjust the codebase for C23 that changes functions
323
+ like strchr() that discarded constness when they return a pointer into
324
+ a const string to preserve constness.
325
+
326
+ * "git rev-list --maximal-only" has been optimized by borrowing the
327
+ logic used by "git show-branch --independent", which computes the
328
+ same kind of information much more efficiently.
329
+
330
331
Fixes since v2.53
332
-----------------