@@ -70,6 +70,10 @@ UI, Workflows & Features
70
70
* The level of verbose output from the ort backend during inner merge
71
71
has been aligned to that of the recursive backend.
72
72
73
+ * "git remote rename A B", depending on the number of remote-tracking
74
+ refs involved, takes long time renaming them. The command has been
75
+ taught to show progress bar while making the user wait.
76
+
73
77
74
78
Performance, Internal Implementation, Development Support etc.
75
79
@@ -122,6 +126,12 @@ Performance, Internal Implementation, Development Support etc.
122
126
* Makefile refactoring with a bit of suffixes rule stripping to
123
127
optimize the runtime overhead.
124
128
129
+ * "git stash drop" is reimplemented as an internal call to
130
+ reflog_delete() function, instead of invoking "git reflog delete"
131
+ via run_command() API.
132
+
133
+ * Count string_list items in size_t, not "unsigned int".
134
+
125
135
126
136
Fixes since v2.35
127
137
-----------------
@@ -299,6 +309,17 @@ Fixes since v2.35
299
309
Adjustments have been made to accommodate these changes.
300
310
(merge b0b70d54c4 fs/gpgsm-update later to maint).
301
311
312
+ * The untracked cache newly computed weren't written back to the
313
+ on-disk index file when there is no other change to the index,
314
+ which has been corrected.
315
+
316
+ * "git config -h" did not describe the "--type" option correctly.
317
+ (merge 5445124fad mf/fix-type-in-config-h later to maint).
318
+
319
+ * The way generation number v2 in the commit-graph files are
320
+ (not) handled has been corrected.
321
+ (merge 6dbf4b8172 ds/commit-graph-gen-v2-fixes later to maint).
322
+
302
323
* Other code cleanup, docfix, build fix, etc.
303
324
(merge cfc5cf428b jc/find-header later to maint).
304
325
(merge 40e7cfdd46 jh/p4-fix-use-of-process-error-exception later to maint).
0 commit comments