@@ -40,6 +40,18 @@ UI, Workflows & Features
4040
4141 * "git branch" learned the "--recurse-submodules" option.
4242
43+ * A not-so-common mistake is to write a script to feed "git bisect
44+ run" without making it executable, in which case all tests will
45+ exit with 126 or 127 error codes, even on revisions that are marked
46+ as good. Try to recognize this situation and stop iteration early.
47+
48+ * When "index-pack" dies due to incoming data exceeding the maximum
49+ allowed input size, include the value of the limit in the error
50+ message.
51+
52+ * The error message given by "git switch HEAD~4" has been clarified
53+ to suggest the "--detach" option that is required.
54+
4355
4456Performance, Internal Implementation, Development Support etc.
4557
@@ -73,6 +85,11 @@ Performance, Internal Implementation, Development Support etc.
7385 paths were unnecessarily confusing since it did not differentiate
7486 inner merges and outer merges.
7587
88+ * Small modernization of the rerere-train script (in contrib/).
89+
90+ * Use designated initializers we started using in mid 2017 in more
91+ parts of the codebase that are relatively quiescent.
92+
7693
7794Fixes since v2.35
7895-----------------
@@ -232,6 +249,10 @@ Fixes since v2.35
232249 * Document Taylor as a new member of Git PLC at SFC. Welcome.
233250 (merge e8d56ca863 tb/coc-plc-update later to maint).
234251
252+ * "git checkout -b branch/with/multi/level/name && git stash" only
253+ recorded the last level component of the branch name, which has
254+ been corrected.
255+
235256 * Other code cleanup, docfix, build fix, etc.
236257 (merge cfc5cf428b jc/find-header later to maint).
237258 (merge 40e7cfdd46 jh/p4-fix-use-of-process-error-exception later to maint).
0 commit comments