From: Junio C Hamano <gitster@xxxxxxxxx> We traditionally allowed a mbox file or a directory name of a maildir (but never an individual file inside a maildir) to be given to "git am". Even though an individual file in a maildir (or more generally, a piece of RFC2822 e-mail) is not a mbox file, it contains enough information to create a commit out of it, so there is no reason to reject one. Running mailsplit on such a file feels stupid, but it does not hurt. This builds on top of a5a6755 (git-am foreign patch support: introduce patch_format, 2009-05-27) that introduced mailbox format detection. The codepath to deal with a mbox requires it to begin with "From " line and also allows it to begin with "From: ", but a random piece of e-mail can and often do begin with any valid RFC2822 header lines. Instead of checking the first line, we extract all the lines up to the first empty line, and make sure they look like e-mail headers. This fixes the test in t4150-am. Signed-off-by: Junio C Hamano <gitster@xxxxxxxxx> Signed-off-by: Brandon Casey <drafnel@xxxxxxxxx> --- Junio, You'll notice that I changed your grep -E to an egrep and dropped the -e. I do not see any other grep which uses -e, and I seem to recall Jeff King actively removing -e claiming that some greps do not recognize it. I do not have a perfect memory though, so apologies to Jeff if I am mistaken. -brandon git-am.sh | 14 ++++++++++++++ t/t4150-am.sh | 2 +- 2 files changed, 15 insertions(+), 1 deletions(-) diff --git a/git-am.sh b/git-am.sh index d64d997..dd60f5d 100755 --- a/git-am.sh +++ b/git-am.sh @@ -191,6 +191,20 @@ check_patch_format () { esac ;; esac + if test -z "$patch_format" && + test -n "$l1" && + test -n "$l2" && + test -n "$l3" + then + # This begins with three non-empty lines. Is this a + # piece of e-mail a-la RFC2822? Grab all the headers, + # discarding the indented remainder of folded lines, + # and see if it looks like that they all begin with the + # header field names... + sed -n -e '/^$/q' -e '/^[ ]/d' -e p "$1" | + egrep -v '^[A-Za-z]+(-[A-Za-z]+)*:' >/dev/null || + patch_format=mbox + fi } < "$1" || clean_abort } diff --git a/t/t4150-am.sh b/t/t4150-am.sh index ad2a85f..4e8e176 100755 --- a/t/t4150-am.sh +++ b/t/t4150-am.sh @@ -114,7 +114,7 @@ test_expect_success 'am applies patch correctly' ' test "$(git rev-parse second^)" = "$(git rev-parse HEAD^)" ' -test_expect_failure 'am correctly applies patch from email lacking "From" in first 3 lines' ' +test_expect_success 'am correctly applies patch from email lacking "From" in first 3 lines' ' git checkout first && git am patch1.eml && ! test -d .git/rebase-apply && -- 1.6.4 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html