From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Jeff Mickey" Subject: Re: Best Way to Submit a Patch Date: Tue, 16 Dec 2008 03:47:47 -0500 Message-ID: References: <49452CE8.8070104@manor-farm.org> <49462E3C.5040302@manor-farm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LCVap-0004NM-Oz for emacs-orgmode@gnu.org; Tue, 16 Dec 2008 03:47:51 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LCVan-0004N6-AW for emacs-orgmode@gnu.org; Tue, 16 Dec 2008 03:47:50 -0500 Received: from [199.232.76.173] (port=47680 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LCVan-0004N3-5T for emacs-orgmode@gnu.org; Tue, 16 Dec 2008 03:47:49 -0500 Received: from wf-out-1314.google.com ([209.85.200.172]:49124) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LCVam-0005CQ-PY for emacs-orgmode@gnu.org; Tue, 16 Dec 2008 03:47:48 -0500 Received: by wf-out-1314.google.com with SMTP id 28so2932457wfc.24 for ; Tue, 16 Dec 2008 00:47:47 -0800 (PST) In-Reply-To: <49462E3C.5040302@manor-farm.org> Content-Disposition: inline List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Ian Barton Cc: emacs-orgmode@gnu.org I just wanted to make the addition that for emailing patches around, git has a lot of decent tools. `git-format-patch origin` will generate patch files for all commits that aren't in origin yet... it will also give you the commit messages/diffstats/etc in the patches.[1] `git-send-email ` will send the email off for you with the patches included. This is best to set up with git-config for repo specific settings.[2] And to Carsten, when you receive patches you want to check into your git branch, use git-am on the emails.[3] // jeff [1]: http://www.kernel.org/pub/software/scm/git/docs/git-format-patch.html [2]: http://www.kernel.org/pub/software/scm/git/docs/git-send-email.html [3]: http://www.kernel.org/pub/software/scm/git/docs/git-am.html