From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: Where are all the pvops branches? Date: Sat, 6 Mar 2010 19:11:11 +0000 Message-ID: <1267902671.20243.70.camel@localhost.localdomain> References: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Keir Fraser Cc: "xen-devel@lists.xensource.com" List-Id: xen-devel@lists.xenproject.org On Sat, 2010-03-06 at 19:01 +0000, Keir Fraser wrote: > So I cloned git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git but > the result of 'git branch' is to list only xen/master, and if I try things > like 'git checkout xen/stable' then I get told there is no such branch. What > stupid thing am I doing wrong? You need "git branch -r" to show remote branches. xen/master needs to be prepended by the remote name, which defaults to origin unless you have been doing clever things with "git remote". Try "git checkout -b xen/stable origin/xen/stable" to checkout origin/xen/stable into a local branch called xen/stable. Ian.