]> git.ipfire.org Git - thirdparty/git.git/commitdiff
The fifth batch
authorJunio C Hamano <gitster@pobox.com>
Fri, 21 Oct 2022 18:37:36 +0000 (11:37 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 21 Oct 2022 18:37:36 +0000 (11:37 -0700)
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/RelNotes/2.39.0.txt

index 04ef0edcb48ee915713c22166dc318f1857a8510..8153661826dec0cf4776df2f1fdb2ab2523cb394 100644 (file)
@@ -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).