File tree Expand file tree Collapse file tree 2 files changed +6
-13
lines changed Expand file tree Collapse file tree 2 files changed +6
-13
lines changed Original file line number Diff line number Diff line change 1
- Git v1.7.1.1 Release Notes (draft)
2
- ==================================
1
+ Git v1.7.1.1 Release Notes
2
+ ==========================
3
3
4
4
Fixes since v1.7.1
5
5
------------------
@@ -28,7 +28,7 @@ Fixes since v1.7.1
28
28
29
29
* After "git apply --whitespace=fix" removed trailing blank lines in an
30
30
patch in a patch series, it failed to apply later patches that depend
31
- on the presense of such blank lines.
31
+ on the presence of such blank lines.
32
32
33
33
* "git bundle --stdin" segfaulted.
34
34
@@ -94,10 +94,3 @@ Fixes since v1.7.1
94
94
* "git status" showed excess "hints" even when advice.statusHints is set to false.
95
95
96
96
And other minor fixes and documentation updates.
97
-
98
-
99
- --
100
- exec >/var/tmp/1
101
- O=v1.7.1-211-g54fcb21
102
- echo O=$(git describe HEAD)
103
- git shortlog --no-merges HEAD ^$O
Original file line number Diff line number Diff line change @@ -943,7 +943,7 @@ test_expect_success 'asks about and fixes 8bit encodings' '
943
943
grep "do not declare a Content-Transfer-Encoding" stdout &&
944
944
grep email-using-8bit stdout &&
945
945
grep "Which 8bit encoding" stdout &&
946
- grep "Content\\ |MIME" msgtxt1 >actual &&
946
+ egrep "Content|MIME" msgtxt1 >actual &&
947
947
test_cmp actual content-type-decl
948
948
'
949
949
@@ -954,7 +954,7 @@ test_expect_success 'sendemail.8bitEncoding works' '
954
954
955
955
--smtp-server="$(pwd)/fake.sendmail" \
956
956
email-using-8bit >stdout &&
957
- grep "Content\\ |MIME" msgtxt1 >actual &&
957
+ egrep "Content|MIME" msgtxt1 >actual &&
958
958
test_cmp actual content-type-decl
959
959
'
960
960
@@ -966,7 +966,7 @@ test_expect_success '--8bit-encoding overrides sendemail.8bitEncoding' '
966
966
--smtp-server="$(pwd)/fake.sendmail" \
967
967
--8bit-encoding=UTF-8 \
968
968
email-using-8bit >stdout &&
969
- grep "Content\\ |MIME" msgtxt1 >actual &&
969
+ egrep "Content|MIME" msgtxt1 >actual &&
970
970
test_cmp actual content-type-decl
971
971
'
972
972
You can’t perform that action at this time.
0 commit comments