@@ -34,6 +34,8 @@ UI, Workflows & Features
34
34
complete all Git subcommands, including the ones that are normally
35
35
hidden, when GIT_COMPLETION_SHOW_ALL_COMMANDS is used.
36
36
37
+ * "git branch" learned the "--recurse-submodules" option.
38
+
37
39
38
40
Performance, Internal Implementation, Development Support etc.
39
41
@@ -59,6 +61,10 @@ Performance, Internal Implementation, Development Support etc.
59
61
* "git update-index", "git checkout-index", and "git clean" are
60
62
taught to work better with the sparse checkout feature.
61
63
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
+
62
68
63
69
Fixes since v2.35
64
70
-----------------
@@ -162,6 +168,32 @@ Fixes since v2.35
162
168
has been corrected.
163
169
(merge 757e75c81e jz/patch-id-hunk-header-parsing-fix later to maint).
164
170
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
+
165
197
* Other code cleanup, docfix, build fix, etc.
166
198
(merge cfc5cf428b jc/find-header later to maint).
167
199
(merge 40e7cfdd46 jh/p4-fix-use-of-process-error-exception later to maint).
@@ -181,3 +213,5 @@ Fixes since v2.35
181
213
(merge 6798b08e84 ab/do-not-hide-failures-in-git-dot-pm later to maint).
182
214
(merge 9325285df4 po/doc-check-ignore-markup-fix later to maint).
183
215
(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