@@ -84,6 +84,9 @@ UI, Workflows & Features
8484 used in a way similar to existing "--is-bare-repository" and
8585 friends.
8686
87+ * "git describe --match <pattern>" has been taught to play well with
88+ the "--all" option.
89+
8790
8891Performance, Internal Implementation, Development Support etc.
8992
@@ -195,6 +198,10 @@ Performance, Internal Implementation, Development Support etc.
195198 * Add a helper for DLL loading in anticipation for its need in a
196199 future topic RSN.
197200
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.
198205
199206Also contains various documentation updates and code clean-ups.
200207
@@ -403,6 +410,17 @@ Fixes since v2.14
403410 written to suggest that "-s theirs" exists, which is not the case.
404411 (merge c25d98b2a7 jc/merge-x-theirs-docfix later to maint).
405412
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+
406424 * Other minor doc, test and build updates and code cleanups.
407425 (merge f094b89a4d ma/parse-maybe-bool later to maint).
408426 (merge 39b00fa4d4 jk/drop-sha1-entry-pos later to maint).
0 commit comments