summaryrefslogtreecommitdiff
path: root/Documentation/RelNotes/2.2.0.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-09-29 19:44:43 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-09-29 19:44:43 (GMT)
commit0bf7dd652cd7b7d3900e6aed73a97cf2c4978fee (patch)
tree18fee7f257b0f99c57d9ed3b44340783c2ab894d /Documentation/RelNotes/2.2.0.txt
parent26d058738963f23826d77017e82842331af0bae6 (diff)
downloadgit-0bf7dd652cd7b7d3900e6aed73a97cf2c4978fee.zip
git-0bf7dd652cd7b7d3900e6aed73a97cf2c4978fee.tar.gz
git-0bf7dd652cd7b7d3900e6aed73a97cf2c4978fee.tar.bz2
Update draft release notes to 2.2
Diffstat (limited to 'Documentation/RelNotes/2.2.0.txt')
-rw-r--r--Documentation/RelNotes/2.2.0.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/Documentation/RelNotes/2.2.0.txt b/Documentation/RelNotes/2.2.0.txt
index a5e3ce8..438f92e 100644
--- a/Documentation/RelNotes/2.2.0.txt
+++ b/Documentation/RelNotes/2.2.0.txt
@@ -44,6 +44,9 @@ UI, Workflows & Features
to consume their input fully (not following this requirement used
to result in intermittent errors in "git push").
+ * The pretty-format specifier "%d", which expanded to " (tagname)"
+ for a tagged commit, gained a cousin "%D" that just gives the
+ "tagname" without frills.
Performance, Internal Implementation, etc.
@@ -190,3 +193,12 @@ notes for details).
* Use of "--verbose" option used to break "git branch --merged".
(merge 12994dd jk/maint-branch-verbose-merged later to maint).
+
+ * Some MUAs mangled a line in a message that begins with "From " to
+ ">From " when writing to a mailbox file and feeding such an input
+ to "git am" used to lose such a line.
+ (merge 85de86a jk/mbox-from-line later to maint).
+
+ * "rev-parse --verify --quiet $name" is meant to quietly exit with a
+ non-zero status when $name is not a valid object name, but still
+ gave error messages in some cases.