summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-04-30 04:38:07 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-04-30 04:50:27 (GMT)
commit7e391989789db82983665667013a46eabc6fc570 (patch)
tree8d57d7afb56a325c164cc1788ee4c6e77ac31827
parent93e0b28dbb4c1a2cbdce1da8e229af075c2fa092 (diff)
downloadgit-7e391989789db82983665667013a46eabc6fc570.zip
git-7e391989789db82983665667013a46eabc6fc570.tar.gz
git-7e391989789db82983665667013a46eabc6fc570.tar.bz2
The thirteenth batch
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--Documentation/RelNotes/2.32.0.txt32
1 files changed, 32 insertions, 0 deletions
diff --git a/Documentation/RelNotes/2.32.0.txt b/Documentation/RelNotes/2.32.0.txt
index 3f73411..f4e5191 100644
--- a/Documentation/RelNotes/2.32.0.txt
+++ b/Documentation/RelNotes/2.32.0.txt
@@ -77,6 +77,9 @@ UI, Workflows & Features
* Userdiff patterns for "Scheme" has been added.
+ * "git log" learned "--diff-merges=<style>" option, with an
+ associated configuration variable log.diffMerges.
+
Performance, Internal Implementation, Development Support etc.
@@ -131,6 +134,21 @@ Performance, Internal Implementation, Development Support etc.
* A bit of code clean-up and a lot of test clean-up around userdiff
area.
+ * Handling of "promisor packs" that allows certain objects to be
+ missing and lazily retrievable has been optimized (a bit).
+
+ * When packet_write() fails, we gave an extra error message
+ unnecessarily, which has been corrected.
+
+ * The checkout machinery has been taught to perform the actual
+ write-out of the files in parallel when able.
+
+ * Show errno in the trace output in the error codepath that calls
+ read_raw_ref method.
+
+ * Effort to make the command line completion (in contrib/) safe with
+ "set -u" continues.
+
Fixes since v2.31
-----------------
@@ -230,6 +248,20 @@ Fixes since v2.31
corrected.
(merge 56550ea718 sg/bugreport-fixes later to maint).
+ * "git push --quiet --set-upstream" was not quiet when setting the
+ upstream branch configuration, which has been corrected.
+ (merge f3cce896a8 ow/push-quiet-set-upstream later to maint).
+
+ * The prefetch task in "git maintenance" assumed that "git fetch"
+ from any remote would fetch all its local branches, which would
+ fetch too much if the user is interested in only a subset of
+ branches there.
+ (merge 32f67888d8 ds/maintenance-prefetch-fix later to maint).
+
+ * Clarify that pathnames recorded in Git trees are most often (but
+ not necessarily) encoded in UTF-8.
+ (merge 9364bf465d ab/pathname-encoding-doc later to maint).
+
* Other code cleanup, docfix, build fix, etc.
(merge f451960708 dl/cat-file-doc-cleanup later to maint).
(merge 12604a8d0c sv/t9801-test-path-is-file-cleanup later to maint).