Skip to content

Commit e79552d

Browse files
committed
The fourth batch
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 94e8e40 commit e79552d

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

Documentation/RelNotes/2.44.0.txt

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Git v2.44 Release Notes
22
=======================
33

4+
Backward Compatibility Notes
5+
6+
* "git chekcout -B <branch>" used to allow switching to a branch that
7+
is in use on another worktree, but this was by mistake. The users
8+
need to use "--ignore-other-worktrees" option.
9+
10+
411
UI, Workflows & Features
512

613
* "git add" and "git stash" learned to support the ":(attr:...)"
@@ -19,6 +26,14 @@ UI, Workflows & Features
1926
arguments to the "add/set" subcommands of "git sparse-checkout"
2027
better.
2128

29+
* "git checkout -B <branch> [<start-point>]" allowed a branch that is
30+
in use in another worktree to be updated and checked out, which
31+
might be a bit unexpected. The rule has been tightened, which is a
32+
breaking change. "--ignore-other-worktrees" option is required to
33+
unbreak you, if you are used to the current behaviour that "-B"
34+
overrides the safety.
35+
(merge b23285a921 jc/checkout-B-branch-in-use later to maint).
36+
2237

2338
Performance, Internal Implementation, Development Support etc.
2439

@@ -36,6 +51,19 @@ Performance, Internal Implementation, Development Support etc.
3651

3752
* Subject approxidate() and show_date() machinery to OSS-Fuzz.
3853

54+
* A new helper to let us pretend that we called lstat() when we know
55+
our cache_entry is up-to-date via fsmonitor.
56+
57+
* The optimization based on fsmonitor in the "diff --cached"
58+
codepath is resurrected with the "fake-lstat" introduced earlier.
59+
60+
* Test balloon to use C99 "bool" type from <stdbool.h> has been
61+
added.
62+
63+
* "git clone" has been prepared to allow cloning a repository with
64+
non-default hash function into a repository that uses the reftable
65+
backend.
66+
3967

4068
Fixes since v2.43
4169
-----------------
@@ -94,6 +122,18 @@ Fixes since v2.43
94122
specified with valueless "true", which has been corrected.
95123
(merge d49cb162fa jk/implicit-true later to maint).
96124

125+
* Code clean-up for sanity checking of command line options for "git
126+
show-ref".
127+
(merge 7382497372 rs/show-ref-incompatible-options later to maint).
128+
129+
* The code to parse the From e-mail header has been updated to avoid
130+
recursion.
131+
(merge dee182941f jk/mailinfo-iterative-unquote-comment later to maint).
132+
133+
* "git fetch --atomic" issued an unnecessary empty error message,
134+
which has been corrected.
135+
(merge 18ce48918c jx/fetch-atomic-error-message-fix later to maint).
136+
97137
* Other code cleanup, docfix, build fix, etc.
98138
(merge 50f1abcff6 js/packfile-h-typofix later to maint).
99139
(merge cbf498eb53 jb/reflog-expire-delete-dry-run-options later to maint).
@@ -103,3 +143,11 @@ Fixes since v2.43
103143
(merge e4299d26d4 mk/doc-gitfile-more later to maint).
104144
(merge 792b86283b rs/incompatible-options-messages later to maint).
105145
(merge ea8f9494ab jk/config-cleanup later to maint).
146+
(merge d1bd3a8c34 jk/mailinfo-oob-read-fix later to maint).
147+
(merge c0cadb0576 ps/reftable-fixes later to maint).
148+
(merge 647b5e0998 ps/chainlint-self-check-update later to maint).
149+
(merge 68fcebfb1a es/add-doc-list-short-form-of-all-in-synopsis later to maint).
150+
(merge bc62d27d5c jc/doc-most-refs-are-not-that-special later to maint).
151+
(merge 6d6f1cd7ee jc/doc-misspelt-refs-fix later to maint).
152+
(merge 37e8d795be sp/test-i18ngrep later to maint).
153+
(merge fbc6526ea6 rs/t6300-compressed-size-fix later to maint).

0 commit comments

Comments
 (0)