@@ -9,6 +9,9 @@ Backward compatibility warts
9
9
* "_" is now treated as any other URL-valid characters in an URL when
10
10
matching the per-URL configuration variable names.
11
11
12
+ * The color palette used by "git grep" has been updated to match that
13
+ of GNU grep.
14
+
12
15
13
16
UI, Workflows & Features
14
17
@@ -81,6 +84,14 @@ UI, Workflows & Features
81
84
of the current branch; the name can be overridden with a new option
82
85
to allow users to pretend a merge is made on a different branch.
83
86
87
+ * The way "git p4" shows file sizes in its output has been updated to
88
+ use human-readable units.
89
+
90
+ * "git -c branch.autosetupmerge=inherit branch new old" makes "new"
91
+ to have the same upstream as the "old" branch, instead of marking
92
+ "old" itself as its upstream.
93
+
94
+
84
95
Performance, Internal Implementation, Development Support etc.
85
96
86
97
* The use of errno as a means to carry the nature of error in the ref
@@ -171,6 +182,12 @@ Performance, Internal Implementation, Development Support etc.
171
182
but most of its payload came on 64kB "packets". The buffer size
172
183
has been enlarged so that such a packet fits.
173
184
185
+ * "git fetch" and "git pull" are now declared sparse-index clean.
186
+ Also "git ls-files" learns the "--sparse" option to help debugging.
187
+
188
+ * Similar message templates have been consolidated so that
189
+ translators need to work on fewer number of messages.
190
+
174
191
175
192
Fixes since v2.34
176
193
-----------------
@@ -310,6 +327,46 @@ Fixes since v2.34
310
327
been corrected.
311
328
(merge 32e3e8bc55 rs/pcre2-utf later to maint).
312
329
330
+ * Certain sparse-checkout patterns that are valid in non-cone mode
331
+ led to segfault in cone mode, which has been corrected.
332
+
333
+ * Use of certain "git rev-list" options with "git fast-export"
334
+ created nonsense results (the worst two of which being "--reverse"
335
+ and "--invert-grep --grep=<foo>"). The use of "--first-parent" is
336
+ made to behave a bit more sensible than before.
337
+ (merge 726a228dfb ws/fast-export-with-revision-options later to maint).
338
+
339
+ * Perf tests were run with end-user's shell, but it has been
340
+ corrected to use the shell specified by $TEST_SHELL_PATH.
341
+ (merge 9ccab75608 ja/perf-use-specified-shell later to maint).
342
+
343
+ * Fix dependency rules to generate hook-list.h header file.
344
+ (merge d3fd1a6667 ab/makefile-hook-list-dependency-fix later to maint).
345
+
346
+ * "git stash" by default triggers its "push" action, but its
347
+ implementation also made "git stash -h" to show short help only for
348
+ "git stash push", which has been corrected.
349
+ (merge ca7990cea5 ab/do-not-limit-stash-help-to-push later to maint).
350
+
351
+ * "git apply --3way" bypasses the attempt to do a three-way
352
+ application in more cases to address the regression caused by the
353
+ recent change to use direct application as a fallback.
354
+ (merge 34d607032c jz/apply-3-corner-cases later to maint).
355
+
356
+ * Fix performance-releated bug in "git subtree" (in contrib/).
357
+ (merge 3ce8888fb4 jl/subtree-check-parents-argument-passing-fix later to maint).
358
+
359
+ * Extend the guidance to choose the base commit to build your work
360
+ on, and hint/nudge contributors to read others' changes.
361
+ (merge fdfae830f8 jc/doc-submitting-patches-choice-of-base later to maint).
362
+
363
+ * A corner case bug in the ort merge strategy has been corrected.
364
+ (merge d30126c20d en/merge-ort-renorm-with-rename-delete-conflict-fix later to maint).
365
+
366
+ * "git stash apply" forgot to attempt restoring untracked files when
367
+ it failed to restore changes to tracked ones.
368
+ (merge 71cade5a0b en/stash-df-fix later to maint).
369
+
313
370
* Other code cleanup, docfix, build fix, etc.
314
371
(merge 74db416c9c cw/protocol-v2-doc-fix later to maint).
315
372
(merge f9b2b6684d ja/doc-cleanup later to maint).
@@ -332,3 +389,5 @@ Fixes since v2.34
332
389
(merge e6a9bc0c60 rs/t4202-invert-grep-test-fix later to maint).
333
390
(merge deb5407a42 gh/gpg-doc-markup-fix later to maint).
334
391
(merge 999bba3e0b rs/daemon-plug-leak later to maint).
392
+ (merge 786eb1ba39 js/l10n-mention-ngettext-early-in-readme later to maint).
393
+ (merge 2f12b31b74 ab/makefile-msgfmt-wo-stats later to maint).
0 commit comments