From mboxrd@z Thu Jan  1 00:00:00 1970
Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org)
	by finch.gentoo.org with esmtp (Exim 4.60)
	(envelope-from <gentoo-science+bounces-806-garchives=archives.gentoo.org@lists.gentoo.org>)
	id 1LbgtJ-0002T8-2F
	for garchives@archives.gentoo.org; Mon, 23 Feb 2009 19:55:01 +0000
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 61ED3E0498;
	Mon, 23 Feb 2009 19:54:59 +0000 (UTC)
Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.184])
	by pigeon.gentoo.org (Postfix) with ESMTP id 1BE66E0498
	for <gentoo-science@lists.gentoo.org>; Mon, 23 Feb 2009 19:54:59 +0000 (UTC)
Received: by mu-out-0910.google.com with SMTP id w8so1401859mue.6
        for <gentoo-science@lists.gentoo.org>; Mon, 23 Feb 2009 11:54:58 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=gmail.com; s=gamma;
        h=domainkey-signature:received:received:subject:from:to:in-reply-to
         :references:content-type:date:message-id:mime-version:x-mailer
         :content-transfer-encoding;
        bh=1nqdpU348bqRuJBkQj5Lm1cIhP9/LHNtSm0yi3tWDdw=;
        b=t+7vnC0ha1r2oTKt0ZpMH9VU5603JwEo/7EvT6D6JBo7pLRwEl6YSeceVEvQc8ycQo
         Z+5Oc5Xc0Xp1O+p4mcdE0asbZYEiMGqN+7AkhH6tt6T01twQwGxh4+Dcs/KdaDhZqXnE
         FymxQcSQ07xPbHowWiCWldz2UYyQXkavWqscA=
DomainKey-Signature: a=rsa-sha1; c=nofws;
        d=gmail.com; s=gamma;
        h=subject:from:to:in-reply-to:references:content-type:date:message-id
         :mime-version:x-mailer:content-transfer-encoding;
        b=XYCD4sho2KBXRxuWJs+cs3OVXi/affTcJqC8VAS18hxzNNtJuOQbz7ba/fTnzju6B2
         q+P8vucjOqUCa3z6mVcJG+lCBsaO+6j7KykkHr1l7qNEvb0f46CbzjEaxdj5H2U9qiEh
         3+7trVVkjdmOpFQaVqo8Te1xQD56d/zp7SW/o=
Received: by 10.103.213.10 with SMTP id p10mr3688749muq.17.1235418898425;
        Mon, 23 Feb 2009 11:54:58 -0800 (PST)
Received: from ?84.237.251.77? ([84.237.251.77])
        by mx.google.com with ESMTPS id j2sm5281962mue.54.2009.02.23.11.54.56
        (version=SSLv3 cipher=RC4-MD5);
        Mon, 23 Feb 2009 11:54:58 -0800 (PST)
Subject: Re: [gentoo-science] Re: overlay move to git
From: My Th <rei4dan@gmail.com>
To: gentoo-science@lists.gentoo.org
In-Reply-To: <49A2E2B7.50107@j-schmitz.net>
References: <alpine.LRH.1.10.0902202000550.3272@star.inp.nsk.su>
	 <1235331956.19524.31.camel@localhost> <20090223090855.76aac1b2@gentoo.org>
	 <200902231318.25035.alexxy@gentoo.org> <49A2978A.40301@j-schmitz.net>
	 <49A2E2B7.50107@j-schmitz.net>
Content-Type: text/plain
Date: Mon, 23 Feb 2009 21:54:44 +0200
Message-Id: <1235418884.12671.10.camel@localhost>
Precedence: bulk
List-Post: <mailto:gentoo-science@lists.gentoo.org>
List-Help: <mailto:gentoo-science+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-science+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-science+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-science.gentoo.org>
X-BeenThere: gentoo-science@lists.gentoo.org
Reply-to: gentoo-science@lists.gentoo.org
Mime-Version: 1.0
X-Mailer: Evolution 2.22.3.1 
Content-Transfer-Encoding: 7bit
X-Archives-Salt: af32dfd1-c964-49fc-b7df-ac5cd0933630
X-Archives-Hash: b8ec6b165062c44fb077c1f2d7960203

> > But whats important from alexxy's solution is, that if you cannot push,
> > because your HEAD is not up2date than do
> > 
> > git pull --rebase
> > 
> > and not only
> > 
> > git pull
> > 
> 
> Sorry wasn't alexxys solution, it was from rei4dan.
> 
> 
> But I hit some bad thing, I am working alot with branches and noted that
>  the .git dir growths and growths, although I removed the branches. Can
> I clean this up?
> 

Actually "git pull --rebase" was indeed suggested by alexxy on IRC which
might be more efficient in normal cases than my approach (git pull with
subsequent git rebase).

So now it is something like this (without branches):
>$ git clone
... edit ...
>$ git add
>$ export ECHANGELOG_USER="me <me@gentoo.org>"
>$ echangelog
>$ repoman -p full
>$ git add
>$ git commit
>$ git pull --rebase
>$ git push


Cheers,
Reinis