Skip to content

Commit fb46e0c

Browse files
committed
Eighth batch for 2.1
Signed-off-by: Junio C Hamano <[email protected]>
1 parent d9037ea commit fb46e0c

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

Documentation/RelNotes/2.1.0.txt

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ UI, Workflows & Features
9393
users need to explicitly set the variable to 'true' if they want
9494
to resurrect the now-ignored use case.
9595

96-
* "git replace" learned the "--edit" subcommand.
96+
* "git replace" learned the "--edit" subcommand to create a
97+
replacement by editing an existing object.
9798

9899
* "git send-email" learned "--to-cover" and "--cc-cover" options, to
99100
tell it to copy To: and Cc: headers found in the first input file
@@ -115,6 +116,11 @@ Performance, Internal Implementation, etc.
115116

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

119+
* An experimental format to use two files (the base file and
120+
incremental changes relative to it) to represent the index has been
121+
introduced; this may reduce I/O cost of rewriting a large index
122+
when only small part of the working tree changes.
123+
118124
* Effort to shrink the size of patches Windows folks maintain on top
119125
by upstreaming them continues.
120126

@@ -141,6 +147,9 @@ Performance, Internal Implementation, etc.
141147
example, "update-ref --stdin [-z]" has been updated to use this
142148
API.
143149

150+
* skip_prefix() and strip_suffix() API functions are used a lot more
151+
widely throughout the codebase now.
152+
144153
* Parts of the test scripts can be skipped by using a range notation,
145154
e.g. "sh t1234-test.sh --run='1-4 6 8-'" to omit test piece 5 and 7
146155
and run everything else.
@@ -213,6 +222,10 @@ notes for details).
213222
couple of options unique to "git merge".
214223
(merge 8fee872 jk/complete-merge-pull later to maint).
215224

225+
* An ancient rewrite passed a wrong pointer to a curl library
226+
function in a rarely used code path.
227+
(merge 479eaa8 ah/fix-http-push later to maint).
228+
216229
* "--ignore-space-change" option of "git apply" ignored the spaces
217230
at the beginning of line too aggressively, which is inconsistent
218231
with the option of the same name "diff" and "git diff" have.
@@ -242,6 +255,11 @@ notes for details).
242255
bit.
243256
(merge 5304810 jk/diff-files-assume-unchanged later to maint).
244257

258+
* "filter-branch" left an empty single-parent commit that results when
259+
all parents of a merge commit gets mapped to the same commit, even
260+
under "--prune-empty".
261+
(merge 79bc4ef cb/filter-branch-prune-empty-degenerate-merges later to maint).
262+
245263
* "git format-patch" did not enforce the rule that the "--follow"
246264
option from the log/diff family of commands must be used with
247265
exactly one pathspec.
@@ -267,6 +285,13 @@ notes for details).
267285
distinguish missing objects from type errors.
268286
(merge 77583e7 jk/index-pack-report-missing later to maint).
269287

288+
* "log --show-signature" incorrectly decided the color to paint a
289+
mergetag that was and was not correctly validated.
290+
(merge 42c55ce mg/fix-log-mergetag-color later to maint).
291+
292+
* "log --show-signature" did not pay attention to "--graph" option.
293+
(merge cf3983d zk/log-graph-showsig later to maint).
294+
270295
* "git mailinfo" used to read beyond the end of header string while
271296
parsing an incoming e-mail message to extract the patch.
272297
(merge b1a013d rs/mailinfo-header-cmp later to maint).
@@ -276,6 +301,11 @@ notes for details).
276301
except for case differences.
277302
(merge baa37bf dt/merge-recursive-case-insensitive later to maint).
278303

304+
* Merging changes into a file that ends in an incomplete line made the
305+
last line into a complete one, even when the other branch did not
306+
change anything around the end of file.
307+
(merge ba31180 mk/merge-incomplete-files later to maint).
308+
279309
* "git pack-objects" unnecessarily copied the previous contents when
280310
extending the hashtable, even though it will populate the table
281311
from scratch anyway.

0 commit comments

Comments
 (0)