From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: [PATCH] Fix spelling in variable documentation Date: Fri, 14 Nov 2008 16:37:08 -0500 Message-ID: <874p2ac7ln.fsf@gollum.intra.norang.ca> References: <87hc6achqb.fsf@gollum.intra.norang.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L16Lz-0004ED-Ex for emacs-orgmode@gnu.org; Fri, 14 Nov 2008 16:37:23 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L16Lw-0004Do-W1 for emacs-orgmode@gnu.org; Fri, 14 Nov 2008 16:37:22 -0500 Received: from [199.232.76.173] (port=48859 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L16Lw-0004DQ-BC for emacs-orgmode@gnu.org; Fri, 14 Nov 2008 16:37:20 -0500 Received: from mho-02-bos.mailhop.org ([63.208.196.179]:55115) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1L16Lw-00077C-3f for emacs-orgmode@gnu.org; Fri, 14 Nov 2008 16:37:20 -0500 In-Reply-To: (Carsten Dominik's message of "Fri\, 14 Nov 2008 22\:33\:22 +0100") 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: Carsten Dominik Cc: emacs-orgmode@gnu.org Carsten Dominik writes: > On Nov 14, 2008, at 6:58 PM, Bernt Hansen wrote: > >> - org-remember-store-without-prompt >> --- >> >> Minor typo fix in the documentation. This is available on the >> git://git.norang.ca/org-mode repository on the 'for-carsten' branch. >> >> You can cherry pick commits easily with gitk as follows: >> >> $ git checkout master >> $ git fetch git://git.norang.ca/org-mode for-carsten >> $ gitk master FETCH_HEAD >> >> Then right-click on the commits on FETCH_HEAD and select 'Cherry-pick >> this commit' from the menu. This adds the commit to your current >> (master) branch. > > To the master? No matter on which branch I am? Or will it be added > to the current HEAD? > > This is an awesome feature. Git is incredible. It cherry picks to your current branch HEAD. You can checkout different branches in gitk by right-clicking on the branch tag. You can also create tags, and do various other useful operations. You can also cherry pick manually with $ git cherry-pick FETCH_HEAD^ There's nothing really special about the 'master' branch. It's just a name and most repositories have a master branch - but you don't have to have one of those. You can delete it, rename it to something else, whatever - it's just a name. Regards, Bernt