The fifth batch

Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Junio C Hamano 2022-10-21 11:37:36 -07:00
parent c2058ea237
commit 1fc3c0ad40

View 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).
(merge e3733b646d rs/archive-dedup-printf later to maint).
(merge 413bc6d20a ds/cmd-main-reorder later to maint).