@@ -67,6 +67,19 @@ UI, Workflows & Features
67
67
* "git worktree add" learns that the "-d" is a synonym to "--detach"
68
68
option to create a new worktree without being on a branch.
69
69
70
+ * "format-patch --range-diff=<prev> <origin>..HEAD" has been taught
71
+ not to ignore <origin> when <prev> is a single version.
72
+
73
+ * "add -p" now allows editing paths that were only added in intent.
74
+
75
+ * The 'meld' backend of the "git mergetool" learned to give the
76
+ underlying 'meld' the '--auto-merge' option, which would help
77
+ reduce the amount of text that requires manual merging.
78
+
79
+ * "git for-each-ref" and friends that list refs used to allow only
80
+ one --merged or --no-merged to filter them; they learned to take
81
+ combination of both kind of filtering.
82
+
70
83
71
84
Performance, Internal Implementation, Development Support etc.
72
85
@@ -155,6 +168,9 @@ Performance, Internal Implementation, Development Support etc.
155
168
* Allow maintainers to tweak $(TAR) invocations done while making
156
169
distribution tarballs.
157
170
171
+ * "git index-pack" learned to resolve deltified objects with greater
172
+ parallelism.
173
+
158
174
159
175
Fixes since v2.28
160
176
-----------------
@@ -336,6 +352,20 @@ Fixes since v2.28
336
352
early and cleanly when started outside a git repository.
337
353
(merge 378fe5fc3d mt/config-fail-nongit-early later to maint).
338
354
355
+ * There is a logic to estimate how many objects are in the
356
+ repository, which is mean to run once per process invocation, but
357
+ it ran every time the estimated value was requested.
358
+ (merge 67bb65de5d jk/dont-count-existing-objects-twice later to maint).
359
+
360
+ * "git remote set-head" that failed still said something that hints
361
+ the operation went through, which was misleading.
362
+ (merge 5a07c6c3c2 cs/don-t-pretend-a-failed-remote-set-head-succeeded later to maint).
363
+
364
+ * "git fetch --all --ipv4/--ipv6" forgot to pass the protocol options
365
+ to instances of the "git fetch" that talk to individual remotes,
366
+ which has been corrected.
367
+ (merge 4e735c1326 ar/fetch-ipversion-in-all later to maint).
368
+
339
369
* Other code cleanup, docfix, build fix, etc.
340
370
(merge 84544f2ea3 sk/typofixes later to maint).
341
371
(merge b17f411ab5 ar/help-guides-doc later to maint).
@@ -366,3 +396,4 @@ Fixes since v2.28
366
396
(merge e6d5a11fed al/t3200-back-on-a-branch later to maint).
367
397
(merge 324efcf6b6 pw/add-p-leakfix later to maint).
368
398
(merge 1c6ffb546b jk/add-i-fixes later to maint).
399
+ (merge e40e936551 cd/commit-graph-doc later to maint).
0 commit comments