@@ -24,6 +24,16 @@ UI, Workflows & Features
24
24
* "git for-each-ref" learned "--include-root-refs" option to show
25
25
even the stuff outside the 'refs/' hierarchy.
26
26
27
+ * "git rev-list --missing=print" has learned to optionally take
28
+ "--allow-missing-tips", which allows the objects at the starting
29
+ points to be missing.
30
+
31
+ * "git merge-tree" has learned that the three trees involved in the
32
+ 3-way merge only need to be trees, not necessarily commits.
33
+
34
+ * "git log --merge" learned to pay attention to CHERRY_PICK_HEAD and
35
+ other kinds of *_HEAD pseudorefs.
36
+
27
37
28
38
Performance, Internal Implementation, Development Support etc.
29
39
@@ -40,6 +50,10 @@ Performance, Internal Implementation, Development Support etc.
40
50
specified; use "_<placeholder>_" to typeset the word inside a pair
41
51
of <angle-brakets> emphasized.
42
52
53
+ * "git --no-lazy-fetch cmd" allows to run "cmd" while disabling lazy
54
+ fetching of objects from the promisor remote, which may be handy
55
+ for debugging.
56
+
43
57
44
58
Fixes since v2.44
45
59
-----------------
@@ -94,6 +108,25 @@ Fixes since v2.44
94
108
to be the first header file.
95
109
(merge 4e89f0e07c jc/doc-compat-util later to maint).
96
110
111
+ * "git commit -v --cleanup=scissors" used to add the scissors line
112
+ twice in the log message buffer, which has been corrected.
113
+ (merge e90cc075cc jt/commit-redundant-scissors-fix later to maint).
114
+
115
+ * A custom remote helper no longer cannot access the newly created
116
+ repository during "git clone", which is a regression in Git 2.44.
117
+ This has been corrected.
118
+ (merge 199f44cb2e ps/remote-helper-repo-initialization-fix later to maint).
119
+
120
+ * Various parts of upload-pack has been updated to bound the resource
121
+ consumption relative to the size of the repository to protect from
122
+ abusive clients.
123
+ (merge 6cd05e768b jk/upload-pack-bounded-resources later to maint).
124
+
125
+ * The upload-pack program, when talking over v2, accepted the
126
+ packfile-uris protocol extension from the client, even if it did
127
+ not advertise the capability, which has been corrected.
128
+ (merge a922bfa3b5 jk/upload-pack-v2-capability-cleanup later to maint).
129
+
97
130
* Other code cleanup, docfix, build fix, etc.
98
131
(merge f0e578c69c rs/use-xstrncmpz later to maint).
99
132
(merge 83e6eb7d7a ba/credential-test-clean-fix later to maint).
@@ -108,3 +141,4 @@ Fixes since v2.44
108
141
(merge f39addd0d9 rs/name-rev-with-mempool later to maint).
109
142
(merge 9a97b43e03 rs/submodule-prefix-simplify later to maint).
110
143
(merge 40b8076462 ak/rebase-autosquash later to maint).
144
+ (merge 3223204456 eg/add-uflags later to maint).
0 commit comments