On 30 April 2013 13:58, John Rigby <john.ri...@linaro.org> wrote:
> On Tue, Apr 30, 2013 at 3:37 AM, Alexander Graf <ag...@suse.de> wrote:
>> Your mail chaining is broken :)
>>
> yes, I see that.  When I ran git format-patch I gave it
> --in-reply-to='<1362535280-5068-1-git-send-email-ag...@suse.de>' 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 --to=qemu-devel@nongnu.org
     ~/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 '--cc=patc...@linaro.org' :-)

-- PMM

Reply via email to