@@ -77,6 +77,9 @@ UI, Workflows & Features
77
77
78
78
* Userdiff patterns for "Scheme" has been added.
79
79
80
+ * "git log" learned "--diff-merges=<style>" option, with an
81
+ associated configuration variable log.diffMerges.
82
+
80
83
81
84
Performance, Internal Implementation, Development Support etc.
82
85
@@ -131,6 +134,21 @@ Performance, Internal Implementation, Development Support etc.
131
134
* A bit of code clean-up and a lot of test clean-up around userdiff
132
135
area.
133
136
137
+ * Handling of "promisor packs" that allows certain objects to be
138
+ missing and lazily retrievable has been optimized (a bit).
139
+
140
+ * When packet_write() fails, we gave an extra error message
141
+ unnecessarily, which has been corrected.
142
+
143
+ * The checkout machinery has been taught to perform the actual
144
+ write-out of the files in parallel when able.
145
+
146
+ * Show errno in the trace output in the error codepath that calls
147
+ read_raw_ref method.
148
+
149
+ * Effort to make the command line completion (in contrib/) safe with
150
+ "set -u" continues.
151
+
134
152
135
153
Fixes since v2.31
136
154
-----------------
@@ -230,6 +248,20 @@ Fixes since v2.31
230
248
corrected.
231
249
(merge 56550ea718 sg/bugreport-fixes later to maint).
232
250
251
+ * "git push --quiet --set-upstream" was not quiet when setting the
252
+ upstream branch configuration, which has been corrected.
253
+ (merge f3cce896a8 ow/push-quiet-set-upstream later to maint).
254
+
255
+ * The prefetch task in "git maintenance" assumed that "git fetch"
256
+ from any remote would fetch all its local branches, which would
257
+ fetch too much if the user is interested in only a subset of
258
+ branches there.
259
+ (merge 32f67888d8 ds/maintenance-prefetch-fix later to maint).
260
+
261
+ * Clarify that pathnames recorded in Git trees are most often (but
262
+ not necessarily) encoded in UTF-8.
263
+ (merge 9364bf465d ab/pathname-encoding-doc later to maint).
264
+
233
265
* Other code cleanup, docfix, build fix, etc.
234
266
(merge f451960708 dl/cat-file-doc-cleanup later to maint).
235
267
(merge 12604a8d0c sv/t9801-test-path-is-file-cleanup later to maint).
0 commit comments