Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1161205AbWAHVVD (ORCPT ); Sun, 8 Jan 2006 16:21:03 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1161208AbWAHVVC (ORCPT ); Sun, 8 Jan 2006 16:21:02 -0500 Received: from web31815.mail.mud.yahoo.com ([68.142.206.168]:56227 "HELO web31815.mail.mud.yahoo.com") by vger.kernel.org with SMTP id S1161205AbWAHVVA (ORCPT ); Sun, 8 Jan 2006 16:21:00 -0500 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:Received:Date:From:Reply-To:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=YKo7OshAB3SFS2M9+kEMqIpSmYviFSU+XFZnyU4lcAMZSrQnBQ7e8PZY5zcyBLR0hBWLkjaAsj1ZhhVMkFQ0qeJa3R8VkrLjCwdsZSF8DTvb8NmLZj3K1Bs+/YAq3Mi4sxb6XkALJKtP0dnqUJgVpABfooVBMRFUNPHZPzRw8z8= ; Message-ID: <20060108212057.79825.qmail@web31815.mail.mud.yahoo.com> Date: Sun, 8 Jan 2006 13:20:57 -0800 (PST) From: Luben Tuikov Reply-To: ltuikov@yahoo.com Subject: Re: git pull on Linux/ACPI release tree To: Linus Torvalds , Martin Langhoff Cc: "Brown, Len" , "David S. Miller" , linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org, akpm@osdl.org, git@vger.kernel.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1657 Lines: 46 --- Linus Torvalds wrote: > So trying out git-rebase and git-cherry-pick just in case you decide to > want to use them might be worthwhile. Making it part of your daily routine > like David has done? Somewhat questionable, but hey, it seems to be > working for David, and it does make some things much easier, so.. How about this usage (branch == tree): Tree A (your tree) Tree B (project B, dependent on Tree A) Tree C (project C, dependent on project B) (i.e. diff(C-A) = diff(C-B) + diff(B-A)) Your tree is pulled into Tree A as often as your tree changes and it just fast forwards. If I want to run project B with your latest tree, then I resolve/merge from tree A to tree B, compile B and run it. If I want to run project C and project B with your latest tree, I resolve/merge from tree A to tree B and from tree B to tree C, compile C and run it. In such cases, are you saying that you'd prefer to pull from Tree B and Tree C (depending on your needs)? Another question: Sometimes, a fix for project B finds its way into tree C (project C) (since C depended on that fix in B). Now I'd like to pull that particular fix, identified by its SHA, into project B, and nothing else, for this I can use git-cherry-pick, right? And lastly, is there a tool whereby I can "see" changes between repos, kind of like git-diff but being able to give URLs too? Luben - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/