@@ -106,14 +106,27 @@ UI, Workflows & Features
106
106
* "git tag" when editing the tag message shows the name of the tag
107
107
being edited as a comment in the editor.
108
108
109
+ * "git verify-commit" command to check GPG signature in signed
110
+ commits, in a way similar to "git verify-tag" is used to check
111
+ signed tags, was added.
112
+
109
113
110
114
Performance, Internal Implementation, etc.
111
115
112
116
* Build procedure for 'subtree' (in contrib/) has been cleaned up.
113
117
118
+ * Effort to shrink the size of patches Windows folks maintain on top
119
+ by upstreaming them continues.
120
+
114
121
* Patches maintained by msysgit folks for Windows port are being
115
122
upstreamed here a bit by bit.
116
123
124
+ * The leaf function to check validity of a refname format has been
125
+ micro-optimized, using SSE2 instructions when available. A few
126
+ breakages during its development have been caught and fixed already
127
+ but there might remain some more still; please test and report if
128
+ you find any.
129
+
117
130
* The `core.deltabasecachelimit` used to default to 16 MiB , but this
118
131
proved to be too small, and has been bumped to 96 MiB.
119
132
@@ -169,6 +182,10 @@ notes for details).
169
182
be checked out currently.
170
183
(merge e3fa568 jc/revision-dash-count-parsing later to maint).
171
184
185
+ * Code to avoid adding the same alternate object store twice was
186
+ subtly broken for a long time, but nobody seems to have noticed.
187
+ (merge 80b4785 rs/fix-alt-odb-path-comparison later to maint).
188
+
172
189
* The "%<(10,trunc)%s" pretty format specifier in the log family of
173
190
commands is used to truncate the string to a given length (e.g. 10
174
191
in the example) with padding to column-align the output, but did
@@ -211,6 +228,11 @@ notes for details).
211
228
line endings.
212
229
(merge 4d4813a bc/blame-crlf-test later to maint).
213
230
231
+ * "git clone -b brefs/tags/bar" would have mistakenly thought we were
232
+ following a single tag, even though it was a name of the branch,
233
+ because it incorrectly used strstr().
234
+ (merge 60a5f5f jc/fix-clone-single-starting-at-a-tag later to maint).
235
+
214
236
* "git commit --allow-empty-messag -C $commit" did not work when the
215
237
commit did not have any log message.
216
238
(merge 076cbd6 jk/commit-C-pick-empty later to maint).
0 commit comments