@@ -111,6 +111,9 @@ Performance, Internal Implementation, etc.
111111
112112 * Build procedure for 'subtree' (in contrib/) has been cleaned up.
113113
114+ * Patches maintained by msysgit folks for Windows port are being
115+ upstreamed here a bit by bit.
116+
114117 * The `core.deltabasecachelimit` used to default to 16 MiB , but this
115118 proved to be too small, and has been bumped to 96 MiB.
116119
@@ -173,6 +176,17 @@ notes for details).
173176 columns are different.
174177 (merge 7d50987 as/pretty-truncate later to maint).
175178
179+ * "%G" (nothing after G) is an invalid pretty format specifier, but
180+ the parser did not notice it as garbage.
181+ (merge 958b2eb jk/pretty-G-format-fixes later to maint).
182+
183+ * A handful of code paths had to read the commit object more than
184+ once when showing header fields that are usually not parsed. The
185+ internal data structure to keep track of the contents of the commit
186+ object has been updated to reduce the need for this double-reading,
187+ and to allow the caller find the length of the object.
188+ (merge 218aa3a jk/commit-buffer-length later to maint).
189+
176190 * The "mailmap.file" configuration option did not support the tilde
177191 expansion (i.e. ~user/path and ~/path).
178192 (merge 9352fd5 ow/config-mailmap-pathname later to maint).
@@ -270,6 +284,10 @@ notes for details).
270284 emptying the insn sheet.
271285 (merge ddb5432 rr/rebase-autostash-fix later to maint).
272286
287+ * During "git rebase --merge", a conflicted patch could not be
288+ skipped with "--skip" if the next one also conflicted.
289+ (merge 95104c7 bc/fix-rebase-merge-skip later to maint).
290+
273291 * "git show -s" (i.e. show log message only) used to incorrectly emit
274292 an extra blank line after a merge commit.
275293 (merge ad2f725 mk/show-s-no-extra-blank-line-for-merges later to maint).
0 commit comments