@@ -136,6 +136,9 @@ Performance, Internal Implementation, Development Support etc.
136
136
* Get rid of "GETTEXT_POISON" support altogether, which may or may
137
137
not be controversial.
138
138
139
+ * Introduce an on-disk file to record revindex for packdata, which
140
+ traditionally was always created on the fly and only in-core.
141
+
139
142
140
143
Fixes since v2.30
141
144
-----------------
@@ -188,5 +191,23 @@ Fixes since v2.30
188
191
processing. This has been corrected.
189
192
(merge f7d42ceec5 js/rebase-i-commit-cleanup-fix later to maint).
190
193
194
+ * Fix in passing custom args from "git clone" to "upload-pack" on the
195
+ other side.
196
+ (merge ad6b5fefbd jv/upload-pack-filter-spec-quotefix later to maint).
197
+
198
+ * The command line completion (in contrib/) completed "git branch -d"
199
+ with branch names, but "git branch -D" offered tagnames in addition,
200
+ which has been corrected. "git branch -M" had the same problem.
201
+ (merge 27dc071b9a jk/complete-branch-force-delete later to maint).
202
+
203
+ * When commands are started from a subdirectory, they may have to
204
+ compare the path to the subdirectory (called prefix and found out
205
+ from $(pwd)) with the tracked paths. On macOS, $(pwd) and
206
+ readdir() yield decomposed path, while the tracked paths are
207
+ usually normalized to the precomposed form, causing mismatch. This
208
+ has been fixed by taking the same approach used to normalize the
209
+ command line arguments.
210
+ (merge 5c327502db tb/precompose-prefix-too later to maint).
211
+
191
212
* Other code cleanup, docfix, build fix, etc.
192
213
(merge e3f5da7e60 sg/t7800-difftool-robustify later to maint).
0 commit comments