summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-04-04 17:24:07 (GMT)
committerJunio C Hamano <gitster@pobox.com>2022-04-04 17:56:25 (GMT)
commitfaa21c10d44184f616d391c158dcbb13b9c72ef3 (patch)
tree0413bbfa9805070e07f24fd2c4bcffd2e7b5e7bb
parent7c6d8ee8fa3be77d4bf4d38f59e866a0af1931f8 (diff)
downloadgit-2.36.0-rc0.zip
git-2.36.0-rc0.tar.gz
git-2.36.0-rc0.tar.bz2
Git 2.36-rc0v2.36.0-rc0
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--Documentation/RelNotes/2.36.0.txt32
-rwxr-xr-xGIT-VERSION-GEN2
2 files changed, 33 insertions, 1 deletions
diff --git a/Documentation/RelNotes/2.36.0.txt b/Documentation/RelNotes/2.36.0.txt
index ffabec1..8da5b2e 100644
--- a/Documentation/RelNotes/2.36.0.txt
+++ b/Documentation/RelNotes/2.36.0.txt
@@ -88,6 +88,20 @@ UI, Workflows & Features
implementation detail, except for "git reset", to emit messages;
now "git reset" part has also been squelched.
+ * "git ls-tree" learns "--oid-only" option, similar to "--name-only",
+ and more generalized "--format" option.
+
+ * "git fetch --refetch" learned to fetch everything without telling
+ the other side what we already have, which is useful when you
+ cannot trust what you have in the local object store.
+
+ * "git branch" gives hint when branch tracking cannot be established
+ because fetch refspecs from multiple remote repositories overlap.
+
+ * "git worktree list --porcelain" did not c-quote pathnames and lock
+ reasons with unsafe bytes correctly, which is worked around by
+ introducing NUL terminated output format with "-z".
+
Performance, Internal Implementation, Development Support etc.
@@ -162,6 +176,9 @@ Performance, Internal Implementation, Development Support etc.
* Updates to refs traditionally weren't fsync'ed, but we can
configure using core.fsync variable to do so.
+ * "git reflog" command now uses parse-options API to parse its
+ command line options.
+
Fixes since v2.35
-----------------
@@ -367,6 +384,19 @@ Fixes since v2.35
* When "shallow" information is updated, we forgot to update the
in-core equivalent, which has been corrected.
+ * When creating a loose object file, we didn't report the exact
+ filename of the file we failed to fsync, even though the
+ information was readily available, which has been corrected.
+
+ * "git am" can read from the standard input when no mailbox is given
+ on the command line, but the end-user gets no indication when it
+ happens, making Git appear stuck.
+ (merge 7b20af6a06 jc/mailsplit-warn-on-tty later to maint).
+
+ * "git mv" failed to refresh the cached stat information for the
+ entry it moved.
+ (merge b7f9130a06 vd/mv-refresh-stat later to maint).
+
* 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).
@@ -396,3 +426,5 @@ Fixes since v2.35
(merge c614beb933 ep/t6423-modernize later to maint).
(merge 57be9c6dee ab/reflog-prep-fix later to maint).
(merge 5327d8982a js/in-place-reverse-in-sequencer later to maint).
+ (merge 2e2c0be51e dp/worktree-repair-in-usage later to maint).
+ (merge 6563706568 jc/coding-guidelines-decl-in-for-loop later to maint).
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
index f964f9b..d92e7d4 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -1,7 +1,7 @@
#!/bin/sh
GVF=GIT-VERSION-FILE
-DEF_VER=v2.35.GIT
+DEF_VER=v2.36.0-rc0
LF='
'