On 27.5.2012 00:03, Harald Dunkel wrote: >> You make easier for the receiving party if you send patches using >> git send-email. And lkml should be always CCed in addition to the >> maintainer and/or subsystem mailing list. Otherwise, the patch >> itself was OK. >> > > I tried to follow the doc on kernelnewbies, but I haven't seen the > git command line. It would help very much if you could send me a > pointer to some more up-to-date information, if you have it at hand. The commandline is git send-email --to=... --cc=... --cc=... ... <base> or git send-email --to=... --cc=... --cc=... ... <base>..<end> <base> is the commit you based your changes on. So you usually do git checkout -b my-fix master <hack hack hack> git send-email ... master..my-fix Then the receiver can simply pipe the email(s) to 'git am' to apply the changes. Of course git send-email is not mandatory, but if you use it, you can be sure that the patch will be applicable without further processing. Michal -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html