On 30 April 2013 13:58, John Rigby <[email protected]> wrote:
> On Tue, Apr 30, 2013 at 3:37 AM, Alexander Graf <[email protected]> wrote:
>> Your mail chaining is broken :)
>>
> yes, I see that. When I ran git format-patch I gave it
> --in-reply-to='<[email protected]>' which was
> the msgid of your original part 0/12. That obviously was not the right
> thing. Do I send each part with --in-reply-to set to previous version of
> that patch?
You don't need to chain a v2 patch series to the previously
submitted version at all. Just make sure that each patch
in the series is a reply to its own cover letter. I use:
git format-patch -o ~/sent-patches/whatever.2 master --cover-letter
--subject-prefix='PATCH v2'
[Edit the cover letter here]
git send-email --no-chain-reply-to [email protected]
~/sent-patches/whatever.2
(add --suppress-cc, --from, --cc, etc to taste, and you can
set these defaults in your .gitconfig rather than using command
line arguments. --dry-run is also a useful send-email option.)
PS: for Linaro you should include '[email protected]' :-)
-- PMM