@@ -132,6 +132,19 @@ Performance, Internal Implementation, Development Support etc.
132
132
encourage new callers to use the correct and more strict
133
133
validation.
134
134
135
+ * Unnecessary reading of state variables back from the disk during
136
+ sequencer operation has been reduced.
137
+
138
+ * The code has been made to avoid gmtime() and localtime() and prefer
139
+ their reentrant counterparts.
140
+
141
+ * "git add -i" that is getting rewritten in C has been extended to
142
+ cover subcommands other than the "patch".
143
+
144
+ * In a repository with many packfiles, the cost of the procedure that
145
+ avoids registering the same packfile twice was unnecessarily high
146
+ by using an inefficient search algorithm, which has been corrected.
147
+
135
148
136
149
Fixes since v2.24
137
150
-----------------
@@ -261,6 +274,18 @@ Fixes since v2.24
261
274
generation, instead of following the "if it takes more than two
262
275
seconds, show progress" pattern, which has been corrected.
263
276
277
+ * "git rebase" did not work well when format.useAutoBase
278
+ configuration variable is set, which has been corrected.
279
+
280
+ * The "diff" machinery learned not to lose added/removed blank lines
281
+ in the context when --ignore-blank-lines and --function-context are
282
+ used at the same time.
283
+ (merge 0bb313a552 rs/xdiff-ignore-ws-w-func-context later to maint).
284
+
285
+ * The test on "fast-import" used to get stuck when "fast-import" died
286
+ in the middle.
287
+ (merge 0d9b0d7885 sg/t9300-robustify later to maint).
288
+
264
289
* Other code cleanup, docfix, build fix, etc.
265
290
(merge 80736d7c5e jc/am-show-current-patch-docfix later to maint).
266
291
(merge 8b656572ca sg/commit-graph-usage-fix later to maint).
@@ -288,3 +313,7 @@ Fixes since v2.24
288
313
(merge 528d9e6d01 jk/perf-wo-git-dot-pm later to maint).
289
314
(merge fc42f20e24 sg/test-squelch-noise-in-commit-bulk later to maint).
290
315
(merge c64368e3a2 bc/t9001-zsh-in-posix-emulation-mode later to maint).
316
+ (merge 11de8dd7ef dr/branch-usage-casefix later to maint).
317
+ (merge e05e8cf074 rs/archive-zip-code-cleanup later to maint).
318
+ (merge 147ee35558 rs/commit-export-env-simplify later to maint).
319
+ (merge 4507ecc771 rs/patch-id-use-oid-to-hex later to maint).
0 commit comments