@@ -84,6 +84,9 @@ UI, Workflows & Features
84
84
used in a way similar to existing "--is-bare-repository" and
85
85
friends.
86
86
87
+ * "git describe --match <pattern>" has been taught to play well with
88
+ the "--all" option.
89
+
87
90
88
91
Performance, Internal Implementation, Development Support etc.
89
92
@@ -195,6 +198,10 @@ Performance, Internal Implementation, Development Support etc.
195
198
* Add a helper for DLL loading in anticipation for its need in a
196
199
future topic RSN.
197
200
201
+ * "git status --ignored", when noticing that a directory without any
202
+ tracked path is ignored, still enumerated all the ignored paths in
203
+ the directory, which is unnecessary. The codepath has been
204
+ optimized to avoid this overhead.
198
205
199
206
Also contains various documentation updates and code clean-ups.
200
207
@@ -403,6 +410,17 @@ Fixes since v2.14
403
410
written to suggest that "-s theirs" exists, which is not the case.
404
411
(merge c25d98b2a7 jc/merge-x-theirs-docfix later to maint).
405
412
413
+ * "git fast-export" with -M/-C option issued "copy" instruction on a
414
+ path that is simultaneously modified, which was incorrect.
415
+ (merge b3e8ca89cf jt/fast-export-copy-modify-fix later to maint).
416
+
417
+ * Many codepaths have been updated to squelch -Wsign-compare
418
+ warnings.
419
+ (merge 071bcaab64 rj/no-sign-compare later to maint).
420
+
421
+ * Memory leaks in various codepaths have been plugged.
422
+ (merge 4d01a7fa65 ma/leakplugs later to maint).
423
+
406
424
* Other minor doc, test and build updates and code cleanups.
407
425
(merge f094b89a4d ma/parse-maybe-bool later to maint).
408
426
(merge 39b00fa4d4 jk/drop-sha1-entry-pos later to maint).
0 commit comments