From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Re[2]: need detailed instructions for submitting the patch Date: Tue, 10 Aug 2010 13:57:54 -0400 Message-ID: <19674.1281463074@gamaville.dokosmarshall.org> References: <872864733.20100810015957@gmail.com> <20100809233613.GA2414@soloJazz.com> <87y6cfb80y.fsf@gollum.intra.norang.ca> <934840289.20100810190005@gmail.com> <87eie67af2.fsf@gnu.org> <133680733.20100810213320@gmail.com> <87vd7i2wc7.fsf@altern.org> Reply-To: nicholas.dokos@hp.com Return-path: Received: from [140.186.70.92] (port=46193 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Oit5V-00008K-9l for emacs-orgmode@gnu.org; Tue, 10 Aug 2010 13:58:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Oit5U-0003NO-5D for emacs-orgmode@gnu.org; Tue, 10 Aug 2010 13:58:09 -0400 Received: from vms173007pub.verizon.net ([206.46.173.7]:35693) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Oit5U-0003N9-0d for emacs-orgmode@gnu.org; Tue, 10 Aug 2010 13:58:08 -0400 Received: from gamaville.dokosmarshall.org ([unknown] [12.198.177.3]) by vms173007.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0L6Y00EKE78JGJ90@vms173007.mailsrvcs.net> for emacs-orgmode@gnu.org; Tue, 10 Aug 2010 12:57:55 -0500 (CDT) In-reply-to: Message from Bastien of "Tue, 10 Aug 2010 19:47:52 +0200." <87vd7i2wc7.fsf@altern.org> 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: Bastien Cc: nicholas.dokos@hp.com, emacs-orgmode@gnu.org, Ivanov Dmitry Bastien wrote: > > For example, I have a modified file org-whatever.el. What commands > > must I run? > > Please follow the instructions on Worg and let us know what is not > crystal-clear -- that will help improve the doc if necessary. > I think Dmitry is asking for the git commands and I'm not sure those are described anywhere on Worg. Something like this perhaps: # create a topic branch to deal with a specific topic: use # a descriptive name! git checkout -b topic-branch-foo master git commit -a git format-patch Then when the patch hits mainline (or it is irrevocably rejected), get rid of the branch: git branch -D topic-branch Nick