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-10-21 21:37:36 +0300
committerJunio C Hamano <gitster@pobox.com>2022-10-21 21:37:36 +0300
commit1fc3c0ad407008c2f71dd9ae1241d8b75f8ef886 (patch)
tree394118c9a89d1933fbaf9dce598bc496d9cf687c /Documentation
parentc2058ea237604d3ba7570f355c7832b9e467d6cb (diff)
The fifth batch
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/RelNotes/2.39.0.txt22
1 files changed, 21 insertions, 1 deletions
diff --git a/Documentation/RelNotes/2.39.0.txt b/Documentation/RelNotes/2.39.0.txt
index 04ef0edcb4..8153661826 100644
--- a/Documentation/RelNotes/2.39.0.txt
+++ b/Documentation/RelNotes/2.39.0.txt
@@ -10,6 +10,16 @@ UI, Workflows & Features
* By default, use of fsmonitor on a repository on networked
filesystem is disabled. Add knobs to make it workable on macOS.
+ * After checking out a "branch" that is a symbolic-ref that points at
+ another branch, "git symbolic-ref HEAD" reports the underlying
+ branch, not the symbolic-ref the user gave checkout as argument.
+ The command learned the "--no-recurse" option to stop after
+ dereferencing a symbolic-ref only once.
+
+ * "git branch --edit-description @{-1}" is now a way to edit branch
+ description of the branch you were on before switching to the
+ current branch.
+
Performance, Internal Implementation, Development Support etc.
--------------------------------------------------------------
@@ -37,6 +47,9 @@ Performance, Internal Implementation, Development Support etc.
in C99.
(merge 438c2f859b ab/coding-guidelines-c99 later to maint).
+ * Avoid false-positive from LSan whose assumption may be broken with
+ higher optimization levels.
+
Fixes since v2.38
-----------------
@@ -116,6 +129,12 @@ Fixes since v2.38
syntax for struct.
(merge 54795d37d9 jh/struct-zero-init-with-older-clang later to maint).
+ * Giving "--invert-grep" and "--all-match" without "--grep" to the
+ "git log" command resulted in an attempt to access grep pattern
+ expression structure that has not been allocated, which has been
+ corrected.
+ (merge db84376f98 ab/grep-simplify-extended-expression later to maint).
+
* Other code cleanup, docfix, build fix, etc.
(merge c34a6bd291 so/diff-merges-cleanup later to maint).
(merge 5e7c8b75e7 ab/test-malloc-with-sanitize-leak later to maint).
@@ -130,4 +149,5 @@ Fixes since v2.38
(merge 7c07f36ad2 ab/unused-annotation later to maint).
(merge f7669676d0 rs/use-fspathncmp later to maint).
(merge a677d3c416 pw/remove-rebase-p-test later to maint).
- (merge e3733b646d rs/archive-dedup-printf later to maint). \ No newline at end of file
+ (merge e3733b646d rs/archive-dedup-printf later to maint).
+ (merge 413bc6d20a ds/cmd-main-reorder later to maint).