@@ -29,6 +29,9 @@ UI, Workflows & Features
2929
3030 * Command-line completion scripts for tcsh and zsh have been added.
3131
32+ * A new remote-helper interface for Mercurial has been added to
33+ contrib/remote-helpers.
34+
3235 * We used to have a workaround for a bug in ancient "less" that
3336 causes it to exit without any output when the terminal is resized.
3437 The bug has been fixed in "less" version 406 (June 2007), and the
@@ -75,6 +78,20 @@ UI, Workflows & Features
7578 from the submodule working tree, "git rm" learned to detect this
7679 case and removes the submodule working tree when it is safe.
7780
81+ * "git send-email" used to prompt for the sender address, even when
82+ the committer identify is well specified (e.g. via user.name and
83+ user.email configuration variables). The command no longer gives
84+ this prompt when not necessary.
85+
86+ * "git send-email" did not allow non-address garbage strings to
87+ appear after addresses on Cc: lines in the patch files (and when
88+ told to pick them up to find more recipients), e.g.
89+
90+ Cc: Stable Kernel <
[email protected] > # for v3.2 and up
91+
92+ The command now strips " # for v3.2 and up" part before adding the
93+ remainder of this line to the list of recipients.
94+
7895 * "git submodule add" learned to add a new submodule at the same
7996 path as the path where an unrelated submodule was bound to in an
8097 existing revision via the "--name" option.
@@ -213,7 +230,21 @@ details).
213230 * We failed to mention a file without any content change but whose
214231 permission bit was modified, or (worse yet) a new file without any
215232 content in the "git diff --stat" output.
216- (merge 74faaa1 lt/diff-stat-show-0-lines later to maint).
233+ (merge de9095955 lt/diff-stat-show-0-lines later to maint).
234+
235+ * When "--stat-count" hides a diffstat for binary contents, the total
236+ number of added and removed lines at the bottom was computed
237+ incorrectly.
238+ (merge de9095955 lt/diff-stat-show-0-lines later to maint).
239+
240+ * When "--stat-count" hides a diffstat for unmerged paths, the total
241+ number of affected files at the bottom of the "diff --stat" output
242+ was computed incorrectly.
243+ (merge de9095955 lt/diff-stat-show-0-lines later to maint).
244+
245+ * "diff --shortstat" miscounted the total number of affected files
246+ when there were unmerged paths.
247+ (merge de9095955 lt/diff-stat-show-0-lines later to maint).
217248
218249 * "update-ref -d --deref SYM" to delete a ref through a symbolic ref
219250 that points to it did not remove it correctly.
0 commit comments