From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:35616) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SU1ui-0005Iz-U9 for qemu-devel@nongnu.org; Mon, 14 May 2012 16:30:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SU1ud-0007mZ-8s for qemu-devel@nongnu.org; Mon, 14 May 2012 16:30:40 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:35992) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SU1ud-0007mL-36 for qemu-devel@nongnu.org; Mon, 14 May 2012 16:30:35 -0400 Message-ID: <4FB16B68.3040307@weilnetz.de> Date: Mon, 14 May 2012 22:30:32 +0200 From: Stefan Weil MIME-Version: 1.0 References: <4FB1672D.7000906@rdsoftware.de> In-Reply-To: <4FB1672D.7000906@rdsoftware.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] Posting a patch? List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Erik Rull Cc: "qemu-devel@nongnu.org" Am 14.05.2012 22:12, schrieb Erik Rull: > Hi all, > > is there a guideline or manual how to send a patch to the qemu mailing > list? It seems as if this can be done somehow automagically using the > local git repository, but I didn't find a tool to do that. > > Thanks! > > Best regards, > > Erik Hi Erik, if you use git for sending, you don't risk that your mailer destroys the format of your patch. I usually use these commands to send a single patch from the QEMU source directory: # Create the patch file (name depends on the subject line of your patch). git format-patch HEAD^ # Check the patch (fix any issues which were found). scripts/checkpatch.pl 0001-* # Get the maintainer who is responsible (there is not always one). scripts/get_maintainer.pl 0001-* # Send the patch. git send-email --to qemu-devel@nongnu.org --to "n.n " 0001-* Please read also http://wiki.qemu.org/Contribute/SubmitAPatch. Regards, Stefan W.