Skip to content

Commit

Permalink
Sync with 1.7.1.1
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Jun 29, 2010
2 parents 1ba5c53 + a146392 commit c9eaaab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 13 deletions.
13 changes: 3 additions & 10 deletions Documentation/RelNotes-1.7.1.1.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Git v1.7.1.1 Release Notes (draft)
==================================
Git v1.7.1.1 Release Notes
==========================

Fixes since v1.7.1
------------------
Expand Down Expand Up @@ -28,7 +28,7 @@ Fixes since v1.7.1

* After "git apply --whitespace=fix" removed trailing blank lines in an
patch in a patch series, it failed to apply later patches that depend
on the presense of such blank lines.
on the presence of such blank lines.

* "git bundle --stdin" segfaulted.

Expand Down Expand Up @@ -94,10 +94,3 @@ Fixes since v1.7.1
* "git status" showed excess "hints" even when advice.statusHints is set to false.

And other minor fixes and documentation updates.


--
exec >/var/tmp/1
O=v1.7.1-211-g54fcb21
echo O=$(git describe HEAD)
git shortlog --no-merges HEAD ^$O
6 changes: 3 additions & 3 deletions t/t9001-send-email.sh
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ test_expect_success 'asks about and fixes 8bit encodings' '
grep "do not declare a Content-Transfer-Encoding" stdout &&
grep email-using-8bit stdout &&
grep "Which 8bit encoding" stdout &&
grep "Content\\|MIME" msgtxt1 >actual &&
egrep "Content|MIME" msgtxt1 >actual &&
test_cmp actual content-type-decl
'

Expand All @@ -954,7 +954,7 @@ test_expect_success 'sendemail.8bitEncoding works' '
git send-email --from=author@example.com --to=nobody@example.com \
--smtp-server="$(pwd)/fake.sendmail" \
email-using-8bit >stdout &&
grep "Content\\|MIME" msgtxt1 >actual &&
egrep "Content|MIME" msgtxt1 >actual &&
test_cmp actual content-type-decl
'

Expand All @@ -966,7 +966,7 @@ test_expect_success '--8bit-encoding overrides sendemail.8bitEncoding' '
--smtp-server="$(pwd)/fake.sendmail" \
--8bit-encoding=UTF-8 \
email-using-8bit >stdout &&
grep "Content\\|MIME" msgtxt1 >actual &&
egrep "Content|MIME" msgtxt1 >actual &&
test_cmp actual content-type-decl
'

Expand Down

0 comments on commit c9eaaab

Please sign in to comment.