The 8th batch

Signed-off-by: Junio C Hamano <gitster@pobox.com>

Junio C Hamano committed Feb 27, 2026 at 14:19 UTC 2cc71917514657b93014134350864f4849edfc83
1 file changed +30 -1
Documentation/RelNotes/2.54.0.adoc
+30 -1
@@ -10,7 +10,6 @@ UI, Workflows & Features
10 * "git history" history rewriting (experimental) command has been
11 added.
12
13 -
13 * "git replay" is taught to drop commits that become empty (not the
14 ones that are empty in the original).
15
@@ -32,6 +31,11 @@ UI, Workflows & Features
31 * Command line completion (in contrib/) update for
32 "stash import/export".
33
34 + * "git repo info" learns "--keys" action to list known keys.
35 +
36 + * Extend the alias configuration syntax to allow aliases using
37 + characters outside ASCII alphanumeric (plus '-').
38 +
39
40 Performance, Internal Implementation, Development Support etc.
41 --------------------------------------------------------------
@@ -76,6 +80,12 @@ Performance, Internal Implementation, Development Support etc.
80 already do on Linux and Windows. Also adjust the way Windows
81 implementation reports this information to match the other two.
82
83 + * A handful of places used refs_for_each_ref_in() API incorrectly,
84 + which has been corrected.
85 +
86 + * Some tests assumed "iconv" is available without honoring ICONV
87 + prerequisite, which has been corrected.
88 +
89
90 Fixes since v2.53
91 -----------------
@@ -130,6 +140,21 @@ Fixes since v2.53
140 been fixed.
141 (merge f4eff7116d ps/pack-concat-wo-backfill later to maint).
142
143 + * "git switch <name>", in an attempt to create a local branch <name>
144 + after a remote tracking branch of the same name gave an advise
145 + message to disambiguate using "git checkout", which has been
146 + updated to use "git switch".
147 + (merge 12fee11f21 jc/checkout-switch-restore later to maint).
148 +
149 + * It does not make much sense to apply the "incomplete-line"
150 + whitespace rule to symbolic links, whose contents almost always
151 + lack the final newline. "git apply" and "git diff" are now taught
152 + to exclude them for a change to symbolic links.
153 + (merge 6a41481c6d jc/whitespace-incomplete-line later to maint).
154 +
155 + * "git format-patch --from=<me>" did not honor the command line
156 + option when writing out the cover letter, which has been corrected.
157 +
158 * Other code cleanup, docfix, build fix, etc.
159 (merge d79fff4a11 jk/remote-tracking-ref-leakfix later to maint).
160 (merge 7a747f972d dd/t5403-modernise later to maint).
@@ -151,3 +176,7 @@ Fixes since v2.53
176 (merge 2668b6bdc4 jc/doc-rerere-update later to maint).
177 (merge 2f99f50f2d jc/doc-cg-c-comment later to maint).
178 (merge a454cdca42 kh/doc-am-format-sendmail later to maint).
179 + (merge 8b0061b5c5 jk/ref-filter-lrstrip-optim later to maint).
180 + (merge 5133837392 ps/ci-gitlab-msvc-updates later to maint).
181 + (merge 143e84958c db/doc-fetch-jobs-auto later to maint).
182 + (merge 0678e01f02 ap/use-test-seq-f-more later to maint).