On 8 November 2011 15:16, 陳韋任 <che...@iis.sinica.edu.tw> wrote: > O.K.. Just want to make sure. What you said "thread together your > patches" has something to do with "sendemail.chainreplyto"? I found > I sent this series one by one, i.e., `git send-email 000#.patch`. > I think I should sent them as a whole, i.e., `git send-email *`. But > I am not sure "sendemail.chainreplyto" matters or not.
What makes the major difference is sending them all with one git send-email command. As Max says, not using chainreplyto is the usual convention, but that's a different thing. NB that you can say git send-email --dry-run *.patch and it will print out the messages and headers it would have sent, so you can check that the References headers look like what you want them to. PS: personally I like to use git format-patch's "-o directory" option to write a patch series to its own directory, and then "git send-email directory" to send; that keeps things separate and means you won't ever accidentally send some old stale patch along with your new ones. -- PMM