Skip to content

Commit e6ebfd0

Browse files
committed
The sixth batch
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 9a1d169 commit e6ebfd0

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

Documentation/RelNotes/2.36.0.txt

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ UI, Workflows & Features
3434
complete all Git subcommands, including the ones that are normally
3535
hidden, when GIT_COMPLETION_SHOW_ALL_COMMANDS is used.
3636

37+
* "git branch" learned the "--recurse-submodules" option.
38+
3739

3840
Performance, Internal Implementation, Development Support etc.
3941

@@ -59,6 +61,10 @@ Performance, Internal Implementation, Development Support etc.
5961
* "git update-index", "git checkout-index", and "git clean" are
6062
taught to work better with the sparse checkout feature.
6163

64+
* Use an internal call to reset_head() helper function instead of
65+
spawning "git checkout" in "rebase", and update code paths that are
66+
involved in the change.
67+
6268

6369
Fixes since v2.35
6470
-----------------
@@ -162,6 +168,32 @@ Fixes since v2.35
162168
has been corrected.
163169
(merge 757e75c81e jz/patch-id-hunk-header-parsing-fix later to maint).
164170

171+
* "receive-pack" checks if it will do any ref updates (various
172+
conditions could reject a push) before received objects are taken
173+
out of the temporary directory used for quarantine purposes, so
174+
that a push that is known-to-fail will not leave crufts that a
175+
future "gc" needs to clean up.
176+
(merge 5407764069 cb/clear-quarantine-early-on-all-ref-update-errors later to maint).
177+
178+
* Because a deletion of ref would need to remove it from both the
179+
loose ref store and the packed ref store, a delete-ref operation
180+
that logically removes one ref may end up invoking ref-transaction
181+
hook twice, which has been corrected.
182+
(merge 2ed1b64ebd ps/avoid-unnecessary-hook-invocation-with-packed-refs later to maint).
183+
184+
* When there is no object to write .bitmap file for, "git
185+
multi-pack-index" triggered an error, instead of just skipping,
186+
which has been corrected.
187+
(merge eb57277ba3 tb/midx-no-bitmap-for-no-objects later to maint).
188+
189+
* "git cmd -h" outside a repository should error out cleanly for many
190+
commands, but instead it hit a BUG(), which has been corrected.
191+
(merge 87ad07d735 js/short-help-outside-repo-fix later to maint).
192+
193+
* "working tree" and "per-worktree ref" were in glossary, but
194+
"worktree" itself wasn't, which has been corrected.
195+
(merge 2df5387ed0 jc/glossary-worktree later to maint).
196+
165197
* Other code cleanup, docfix, build fix, etc.
166198
(merge cfc5cf428b jc/find-header later to maint).
167199
(merge 40e7cfdd46 jh/p4-fix-use-of-process-error-exception later to maint).
@@ -181,3 +213,5 @@ Fixes since v2.35
181213
(merge 6798b08e84 ab/do-not-hide-failures-in-git-dot-pm later to maint).
182214
(merge 9325285df4 po/doc-check-ignore-markup-fix later to maint).
183215
(merge cd26cd6c7c sy/modernize-t-lib-read-tree-m-3way later to maint).
216+
(merge d17294a05e ab/hash-object-leakfix later to maint).
217+
(merge b8403129d3 jd/t0015-modernize later to maint).

0 commit comments

Comments
 (0)