Skip to content

Commit da86971

Browse files
committed
Seventh batch for 2.1
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 779c99f commit da86971

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

Documentation/RelNotes/2.1.0.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,27 @@ UI, Workflows & Features
106106
* "git tag" when editing the tag message shows the name of the tag
107107
being edited as a comment in the editor.
108108

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+
109113

110114
Performance, Internal Implementation, etc.
111115

112116
* Build procedure for 'subtree' (in contrib/) has been cleaned up.
113117

118+
* Effort to shrink the size of patches Windows folks maintain on top
119+
by upstreaming them continues.
120+
114121
* Patches maintained by msysgit folks for Windows port are being
115122
upstreamed here a bit by bit.
116123

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+
117130
* The `core.deltabasecachelimit` used to default to 16 MiB , but this
118131
proved to be too small, and has been bumped to 96 MiB.
119132

@@ -169,6 +182,10 @@ notes for details).
169182
be checked out currently.
170183
(merge e3fa568 jc/revision-dash-count-parsing later to maint).
171184

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+
172189
* The "%<(10,trunc)%s" pretty format specifier in the log family of
173190
commands is used to truncate the string to a given length (e.g. 10
174191
in the example) with padding to column-align the output, but did
@@ -211,6 +228,11 @@ notes for details).
211228
line endings.
212229
(merge 4d4813a bc/blame-crlf-test later to maint).
213230

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+
214236
* "git commit --allow-empty-messag -C $commit" did not work when the
215237
commit did not have any log message.
216238
(merge 076cbd6 jk/commit-C-pick-empty later to maint).

0 commit comments

Comments
 (0)