From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: [ANN] List improvement v.2 Date: Tue, 27 Jul 2010 19:49:49 +0200 Message-ID: <874ofkolvm.wl%n.goaziou@gmail.com> References: <87ocdzw7gq.wl%n.goaziou@gmail.com> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Return-path: Received: from [140.186.70.92] (port=44547 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OdoK9-0007Qk-VM for emacs-orgmode@gnu.org; Tue, 27 Jul 2010 13:52:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OdoI6-0008Lx-4W for emacs-orgmode@gnu.org; Tue, 27 Jul 2010 13:50:11 -0400 Received: from mail-ww0-f49.google.com ([74.125.82.49]:57159) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OdoI5-0008Lq-Vr for emacs-orgmode@gnu.org; Tue, 27 Jul 2010 13:50:10 -0400 Received: by wwb31 with SMTP id 31so856993wwb.30 for ; Tue, 27 Jul 2010 10:50:08 -0700 (PDT) In-Reply-To: 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: Scot Becker Cc: Org Mode List Hello, >>>>> Scot Becker writes: > Should I pull a separate repo, or make a branch on the one I have? Both options are possible. In order to make a specific branch in your current repo, it's a two steps move (and one optional): git checkout -b new-lists git remote add ngz http://github.com/ngz/org-mode-lists.git (optional step, it avoids typing the whole url everytime you want to update) Then, to keep up-to-date: git pull ngz end-lists Don't forget to M-x org-reload. > Assuming I find no reason to undo the changes, and assuming they are > merged into the core after some weeks, and assuming that I want keep > current on the main org repository, will I need to do anything if > and when these changes get added to the core if I'm already testing > them on the branch? You will then switch to master branch, delete new-lists branch (and ngz remote repository), then reload org-mode. git checkout master git pull git branch -D new-lists git remote rm ngz (optional) M-x org-reload I'm no specialist of git, there might be even quicker way to do all of this. Thanks for testing. Regards, -- Nicolas