From: Erik Faye-Lund <kusmabite@gmail.com>
To: Brandon Casey <drafnel@gmail.com>
Cc: GIT Mailing-list <git@vger.kernel.org>
Subject: Re: git-am and CRLF
Date: Wed, 13 Mar 2013 18:46:12 +0100 [thread overview]
Message-ID: <CABPQNSYi2UnpEBu_-Mb=2XvCodeoseTGPKCiSo0+2MrnHt3rZQ@mail.gmail.com> (raw)
In-Reply-To: <CA+sFfMfJp1-REXVjipUhsVrUKDSmhrBkV0yd_=sMwwmiw2aypQ@mail.gmail.com>
On Wed, Mar 13, 2013 at 6:42 PM, Brandon Casey <drafnel@gmail.com> wrote:
> On Wed, Mar 13, 2013 at 9:54 AM, Erik Faye-Lund <kusmabite@gmail.com> wrote:
>> I recently tried to apply a patch-series to a repo that is
>> unfortunately full of CRLF files, and was a bit surprised that it
>> didn't work at all.
>>
>> So I made a small repro-case, and it seems CRLF new-lines is indeed
>> the problem. Any clue how to fix it? The way I see it, we should
>> simply be able top treat the CR as any other character, and succeed.
>> But that doesn't seem to happen...
>>
>> git init test &&
>> (
>> cd test/ &&
>> git config core.autocrlf false &&
>> printf "%s\r\n%s\r\n" "foo" "bar" > test.txt &&
>> git add test.txt &&
>> git commit -m. &&
>> printf "%s\r\n%s\r\n%s\r\n" "foo" "baz" "bar" > test.txt &&
>> git commit -am. &&
>> git format-patch -1 &&
>> git reset --hard HEAD^ &&
>> git am 0001-.patch
>> )
>
> Does 'git am --keep-cr' help?
>
It does, how silly of me not to try that before posting.
> Unfortunately the original information about line ending is lost once
> a patch is sent via email since RFC2822/822 dictates that the line
> ending in an email must be crlf. So by default, mailsplit strips it.
Hmpf. I didn't transport my patches over e-mail, I simply used
git-format-patch/git-am to transfer the patches from one git-svn clone
to another. But since that's kind of an "abuse" of
git-format-patch/git-am, perhaps just using --keep-cr is the right
thing.
Thanks anyway :)
prev parent reply other threads:[~2013-03-13 17:47 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-13 16:54 git-am and CRLF Erik Faye-Lund
2013-03-13 17:42 ` Brandon Casey
2013-03-13 17:46 ` Erik Faye-Lund [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CABPQNSYi2UnpEBu_-Mb=2XvCodeoseTGPKCiSo0+2MrnHt3rZQ@mail.gmail.com' \
--to=kusmabite@gmail.com \
--cc=drafnel@gmail.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).