@@ -10,6 +10,16 @@ UI, Workflows & Features
10
10
* By default, use of fsmonitor on a repository on networked
11
11
filesystem is disabled. Add knobs to make it workable on macOS.
12
12
13
+ * After checking out a "branch" that is a symbolic-ref that points at
14
+ another branch, "git symbolic-ref HEAD" reports the underlying
15
+ branch, not the symbolic-ref the user gave checkout as argument.
16
+ The command learned the "--no-recurse" option to stop after
17
+ dereferencing a symbolic-ref only once.
18
+
19
+ * "git branch --edit-description @{-1}" is now a way to edit branch
20
+ description of the branch you were on before switching to the
21
+ current branch.
22
+
13
23
14
24
Performance, Internal Implementation, Development Support etc.
15
25
--------------------------------------------------------------
@@ -37,6 +47,9 @@ Performance, Internal Implementation, Development Support etc.
37
47
in C99.
38
48
(merge 438c2f859b ab/coding-guidelines-c99 later to maint).
39
49
50
+ * Avoid false-positive from LSan whose assumption may be broken with
51
+ higher optimization levels.
52
+
40
53
41
54
Fixes since v2.38
42
55
-----------------
@@ -116,6 +129,12 @@ Fixes since v2.38
116
129
syntax for struct.
117
130
(merge 54795d37d9 jh/struct-zero-init-with-older-clang later to maint).
118
131
132
+ * Giving "--invert-grep" and "--all-match" without "--grep" to the
133
+ "git log" command resulted in an attempt to access grep pattern
134
+ expression structure that has not been allocated, which has been
135
+ corrected.
136
+ (merge db84376f98 ab/grep-simplify-extended-expression later to maint).
137
+
119
138
* Other code cleanup, docfix, build fix, etc.
120
139
(merge c34a6bd291 so/diff-merges-cleanup later to maint).
121
140
(merge 5e7c8b75e7 ab/test-malloc-with-sanitize-leak later to maint).
@@ -130,4 +149,5 @@ Fixes since v2.38
130
149
(merge 7c07f36ad2 ab/unused-annotation later to maint).
131
150
(merge f7669676d0 rs/use-fspathncmp later to maint).
132
151
(merge a677d3c416 pw/remove-rebase-p-test later to maint).
133
- (merge e3733b646d rs/archive-dedup-printf later to maint).
152
+ (merge e3733b646d rs/archive-dedup-printf later to maint).
153
+ (merge 413bc6d20a ds/cmd-main-reorder later to maint).
0 commit comments