@@ -88,6 +88,20 @@ UI, Workflows & Features
8888 implementation detail, except for "git reset", to emit messages;
8989 now "git reset" part has also been squelched.
9090
91+ * "git ls-tree" learns "--oid-only" option, similar to "--name-only",
92+ and more generalized "--format" option.
93+
94+ * "git fetch --refetch" learned to fetch everything without telling
95+ the other side what we already have, which is useful when you
96+ cannot trust what you have in the local object store.
97+
98+ * "git branch" gives hint when branch tracking cannot be established
99+ because fetch refspecs from multiple remote repositories overlap.
100+
101+ * "git worktree list --porcelain" did not c-quote pathnames and lock
102+ reasons with unsafe bytes correctly, which is worked around by
103+ introducing NUL terminated output format with "-z".
104+
91105
92106Performance, Internal Implementation, Development Support etc.
93107
@@ -162,6 +176,9 @@ Performance, Internal Implementation, Development Support etc.
162176 * Updates to refs traditionally weren't fsync'ed, but we can
163177 configure using core.fsync variable to do so.
164178
179+ * "git reflog" command now uses parse-options API to parse its
180+ command line options.
181+
165182
166183Fixes since v2.35
167184-----------------
@@ -367,6 +384,19 @@ Fixes since v2.35
367384 * When "shallow" information is updated, we forgot to update the
368385 in-core equivalent, which has been corrected.
369386
387+ * When creating a loose object file, we didn't report the exact
388+ filename of the file we failed to fsync, even though the
389+ information was readily available, which has been corrected.
390+
391+ * "git am" can read from the standard input when no mailbox is given
392+ on the command line, but the end-user gets no indication when it
393+ happens, making Git appear stuck.
394+ (merge 7b20af6a06 jc/mailsplit-warn-on-tty later to maint).
395+
396+ * "git mv" failed to refresh the cached stat information for the
397+ entry it moved.
398+ (merge b7f9130a06 vd/mv-refresh-stat later to maint).
399+
370400 * Other code cleanup, docfix, build fix, etc.
371401 (merge cfc5cf428b jc/find-header later to maint).
372402 (merge 40e7cfdd46 jh/p4-fix-use-of-process-error-exception later to maint).
@@ -396,3 +426,5 @@ Fixes since v2.35
396426 (merge c614beb933 ep/t6423-modernize later to maint).
397427 (merge 57be9c6dee ab/reflog-prep-fix later to maint).
398428 (merge 5327d8982a js/in-place-reverse-in-sequencer later to maint).
429+ (merge 2e2c0be51e dp/worktree-repair-in-usage later to maint).
430+ (merge 6563706568 jc/coding-guidelines-decl-in-for-loop later to maint).
0 commit comments