@@ -70,6 +70,10 @@ UI, Workflows & Features
7070 * The level of verbose output from the ort backend during inner merge
7171 has been aligned to that of the recursive backend.
7272
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+
7377
7478Performance, Internal Implementation, Development Support etc.
7579
@@ -122,6 +126,12 @@ Performance, Internal Implementation, Development Support etc.
122126 * Makefile refactoring with a bit of suffixes rule stripping to
123127 optimize the runtime overhead.
124128
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+
125135
126136Fixes since v2.35
127137-----------------
@@ -299,6 +309,17 @@ Fixes since v2.35
299309 Adjustments have been made to accommodate these changes.
300310 (merge b0b70d54c4 fs/gpgsm-update later to maint).
301311
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+
302323 * Other code cleanup, docfix, build fix, etc.
303324 (merge cfc5cf428b jc/find-header later to maint).
304325 (merge 40e7cfdd46 jh/p4-fix-use-of-process-error-exception later to maint).
0 commit comments