Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-03-07 07:44:10 +0300
committerJunio C Hamano <gitster@pobox.com>2022-03-07 08:25:33 +0300
commitc2162907e9aa884bdb70208389cb99b181620d51 (patch)
tree0ce6b725cc07153dd21226f45d48c608fbb83822 /Documentation
parent7a4e06c42a1e06f43f90b302cad09f31ec438ff1 (diff)
The ninth batch
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/RelNotes/2.36.0.txt21
1 files changed, 21 insertions, 0 deletions
diff --git a/Documentation/RelNotes/2.36.0.txt b/Documentation/RelNotes/2.36.0.txt
index de1e11e25a..dcb39fe56c 100644
--- a/Documentation/RelNotes/2.36.0.txt
+++ b/Documentation/RelNotes/2.36.0.txt
@@ -40,6 +40,18 @@ UI, Workflows & Features
* "git branch" learned the "--recurse-submodules" option.
+ * A not-so-common mistake is to write a script to feed "git bisect
+ run" without making it executable, in which case all tests will
+ exit with 126 or 127 error codes, even on revisions that are marked
+ as good. Try to recognize this situation and stop iteration early.
+
+ * When "index-pack" dies due to incoming data exceeding the maximum
+ allowed input size, include the value of the limit in the error
+ message.
+
+ * The error message given by "git switch HEAD~4" has been clarified
+ to suggest the "--detach" option that is required.
+
Performance, Internal Implementation, Development Support etc.
@@ -73,6 +85,11 @@ Performance, Internal Implementation, Development Support etc.
paths were unnecessarily confusing since it did not differentiate
inner merges and outer merges.
+ * Small modernization of the rerere-train script (in contrib/).
+
+ * Use designated initializers we started using in mid 2017 in more
+ parts of the codebase that are relatively quiescent.
+
Fixes since v2.35
-----------------
@@ -232,6 +249,10 @@ Fixes since v2.35
* Document Taylor as a new member of Git PLC at SFC. Welcome.
(merge e8d56ca863 tb/coc-plc-update later to maint).
+ * "git checkout -b branch/with/multi/level/name && git stash" only
+ recorded the last level component of the branch name, which has
+ been corrected.
+
* Other code cleanup, docfix, build fix, etc.
(merge cfc5cf428b jc/find-header later to maint).
(merge 40e7cfdd46 jh/p4-fix-use-of-process-error-exception later to maint).