@@ -108,6 +108,13 @@ UI, Workflows & Features
108
108
* "git restore --staged --worktree" now defaults to take the contents
109
109
out of "HEAD", instead of erring out.
110
110
111
+ * "git p4" learned to recover from a (broken) state where a directory
112
+ and a file are recorded at the same path in the Perforce repository
113
+ the same way as their clients do.
114
+
115
+ * "git multi-pack-index repack" has been taught to honor some
116
+ repack.* configuration variables.
117
+
111
118
112
119
Performance, Internal Implementation, Development Support etc.
113
120
@@ -167,6 +174,10 @@ Performance, Internal Implementation, Development Support etc.
167
174
* Instead of always building all branches at GitHub via Actions,
168
175
users can specify which branches to build.
169
176
177
+ * Codepaths that show progress meter have been taught to also use the
178
+ start_progress() and the stop_progress() calls as a "region" to be
179
+ traced.
180
+
170
181
171
182
Fixes since v2.26
172
183
-----------------
@@ -444,6 +455,21 @@ Fixes since v2.26
444
455
e.g. auto-follow tags.
445
456
(merge 08450ef791 cc/upload-pack-v2-fetch-fix later to maint).
446
457
458
+ * "git bisect replay" had trouble with input files when they used
459
+ CRLF line ending, which has been corrected.
460
+ (merge 6c722cbe5a cw/bisect-replay-with-dos later to maint).
461
+
462
+ * "rebase -i" segfaulted when rearranging a sequence that has a
463
+ fix-up that applies another fix-up (which may or may not be a
464
+ fix-up of yet another step).
465
+ (merge 02471e7e20 js/rebase-autosquash-double-fixup-fix later to maint).
466
+
467
+ * "git fsck" ensures that the paths recorded in tree objects are
468
+ sorted and without duplicates, but it failed to notice a case where
469
+ a blob is followed by entries that sort before a tree with the same
470
+ name. This has been corrected.
471
+ (merge 9068cfb20f rs/fsck-duplicate-names-in-trees later to maint).
472
+
447
473
* Other code cleanup, docfix, build fix, etc.
448
474
(merge 564956f358 jc/maintain-doc later to maint).
449
475
(merge 7422b2a0a1 sg/commit-slab-clarify-peek later to maint).
@@ -472,3 +498,4 @@ Fixes since v2.26
472
498
(merge bdccbf7047 mt/doc-worktree-ref later to maint).
473
499
(merge ce9baf234f dl/push-recurse-submodules-fix later to maint).
474
500
(merge 4153274052 bc/doc-credential-helper-value later to maint).
501
+ (merge 5c7bb0146e jc/codingstyle-compare-with-null later to maint).
0 commit comments