@@ -40,6 +40,18 @@ UI, Workflows & Features
40
40
41
41
* "git branch" learned the "--recurse-submodules" option.
42
42
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
+
43
55
44
56
Performance, Internal Implementation, Development Support etc.
45
57
@@ -73,6 +85,11 @@ Performance, Internal Implementation, Development Support etc.
73
85
paths were unnecessarily confusing since it did not differentiate
74
86
inner merges and outer merges.
75
87
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
+
76
93
77
94
Fixes since v2.35
78
95
-----------------
@@ -232,6 +249,10 @@ Fixes since v2.35
232
249
* Document Taylor as a new member of Git PLC at SFC. Welcome.
233
250
(merge e8d56ca863 tb/coc-plc-update later to maint).
234
251
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
+
235
256
* Other code cleanup, docfix, build fix, etc.
236
257
(merge cfc5cf428b jc/find-header later to maint).
237
258
(merge 40e7cfdd46 jh/p4-fix-use-of-process-error-exception later to maint).
0 commit comments