From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vincent Hanquez Subject: Re: git question Date: Sat, 14 Aug 2010 12:11:13 +0100 Message-ID: <4C6679D1.6030305@eu.citrix.com> References: <4C666121.60806@access.denied> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-15"; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <4C666121.60806@access.denied> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: "xen-devel@lists.xensource.com" Cc: Stefan Kuhne List-Id: xen-devel@lists.xenproject.org On 14/08/10 10:25, Stefan Kuhne wrote: > Hello, > > how can i get pv/pcifront-2.6.32 from Konrad. > When i make "git clone > git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen.git > xen-pcifront/" i get a complete 2.6.34 Kernel Tree. git branch -a After you have identified the remote branch you want to clone (origin is the remote that you're originally cloning from) git checkout --track origin/X In your case i suppose you want: git checkout --track origin/pv/pcifront-2.6.32 Then you can verify everything is alright doing a : git branch It should list a master branch and a pv/pcifront-2.6.32 branch that should be your current branch (the presence of the * indicate your current branch) -- Vincent