summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-04-15 20:35:41 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-04-15 20:36:01 (GMT)
commitd1b10fc6d84d49796026e567833b88c7f8886c35 (patch)
treea250e037b7a2ca9ce8b6d2d6e581f172da480c9f
parent5a7e52bed263c1dbc181ece54b73ee4318e79fca (diff)
downloadgit-d1b10fc6d84d49796026e567833b88c7f8886c35.zip
git-d1b10fc6d84d49796026e567833b88c7f8886c35.tar.gz
git-d1b10fc6d84d49796026e567833b88c7f8886c35.tar.bz2
The tenth batch
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--Documentation/RelNotes/2.32.0.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/Documentation/RelNotes/2.32.0.txt b/Documentation/RelNotes/2.32.0.txt
index 8670b73..ea220f2 100644
--- a/Documentation/RelNotes/2.32.0.txt
+++ b/Documentation/RelNotes/2.32.0.txt
@@ -63,6 +63,18 @@ UI, Workflows & Features
* "gitweb" learned "e-mail privacy" feature to redact strings that
look like e-mail addresses on various pages.
+ * "git apply --3way" has always been "to fall back to 3-way merge
+ only when straight application fails". Swap the order of falling
+ back so that 3-way is always attempted first (only when the option
+ is given, of course) and then straight patch application is used as
+ a fallback when it fails.
+
+ * "git apply" now takes "--3way" and "--cached" at the same time, and
+ work and record results only in the index.
+
+ * The command line completion (in contrib/) has learned that
+ CHERRY_PICK_HEAD is a possible pseudo-ref.
+
Performance, Internal Implementation, Development Support etc.