From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mike Galbraith Subject: Re: pulling Already up-to-date linux-2.6 repo takes ~8 minutes? Date: Thu, 18 Oct 2007 07:39:31 +0200 Message-ID: <1192685971.7390.21.camel@Homer.simpson.net> References: <1192678865.20353.14.camel@Homer.simpson.net> <20071018045001.GA14735@spearce.org> <1192684150.7390.15.camel@Homer.simpson.net> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Cc: git To: "Shawn O. Pearce" X-From: git-owner@vger.kernel.org Thu Oct 18 07:39:50 2007 Return-path: Envelope-to: gcvg-git-2@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1IiO6l-0005sj-Ec for gcvg-git-2@gmane.org; Thu, 18 Oct 2007 07:39:47 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755821AbXJRFjf (ORCPT ); Thu, 18 Oct 2007 01:39:35 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755945AbXJRFjf (ORCPT ); Thu, 18 Oct 2007 01:39:35 -0400 Received: from mail.gmx.net ([213.165.64.20]:47621 "HELO mail.gmx.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1755804AbXJRFje (ORCPT ); Thu, 18 Oct 2007 01:39:34 -0400 Received: (qmail invoked by alias); 18 Oct 2007 05:39:32 -0000 Received: from p54B5BA2B.dip0.t-ipconnect.de (EHLO [192.168.178.23]) [84.181.186.43] by mail.gmx.net (mp032) with SMTP; 18 Oct 2007 07:39:32 +0200 X-Authenticated: #14349625 X-Provags-ID: V01U2FsdGVkX1/pAIVtg6XpuKX/vAlX5w95I/7N5s8HXokM/rFqPk Ajq2pPl/lagdtW In-Reply-To: <1192684150.7390.15.camel@Homer.simpson.net> X-Mailer: Evolution 2.8.2 X-Y-GMX-Trusted: 0 Sender: git-owner@vger.kernel.org Precedence: bulk X-Mailing-List: git@vger.kernel.org Archived-At: On Thu, 2007-10-18 at 07:09 +0200, Mike Galbraith wrote: > > I'd suggest making your life a little bit easier. Consider creating > > a remote that points to Linus: > > > > $ git remote add linus git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git > > $ git checkout -b master ; # or any other branch > > $ git config branch.master.remote linus > > $ git config branch.master.merge refs/heads/master Dang. git was happy with everything above except the checkout -b master, so I can't get off the dangling limb I'm on, and onto a solid branch. root@Homer: git checkout -b master git checkout: branch master already exists root@Homer: git branch * (no branch) master root@Homer: time git pull remote: Generating pack... remote: Counting objects: 18672 remote: Done counting 55975 objects. remote: Result has 48507 objects. remote: Deltifying 48507 objects... remote: 100% (48507/48507) done Indexing 48507 objects... remote: Total 48507 (delta 38878), reused 44654 (delta 35166) 100% (48507/48507) done Resolving 38878 deltas... 100% (38878/38878) done 3419 objects were added to complete this thin pack. * refs/remotes/origin/master: fast forward to branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6 old..new: 86a71db..d85714d You are not currently on a branch; you must explicitly specify which branch you wish to merge: git pull real 8m12.676s user 0m29.621s sys 0m2.763s