Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1030280AbVI3LQE (ORCPT ); Fri, 30 Sep 2005 07:16:04 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1030278AbVI3LQE (ORCPT ); Fri, 30 Sep 2005 07:16:04 -0400 Received: from mail.dvmed.net ([216.237.124.58]:58243 "EHLO mail.dvmed.net") by vger.kernel.org with ESMTP id S1030276AbVI3LQB (ORCPT ); Fri, 30 Sep 2005 07:16:01 -0400 Message-ID: <433D1E5D.20303@pobox.com> Date: Fri, 30 Sep 2005 07:15:41 -0400 From: Jeff Garzik User-Agent: Mozilla Thunderbird 1.0.6-1.1.fc4 (X11/20050720) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Linux Kernel CC: Junio C Hamano , git@vger.kernel.org Subject: Re: [howto] Kernel hacker's guide to git, updated References: <433BC9E9.6050907@pobox.com> <20050929200252.GA31516@redhat.com> <433C4B6D.6030701@pobox.com> <7virwjegb5.fsf@assigned-by-dhcp.cox.net> In-Reply-To: <7virwjegb5.fsf@assigned-by-dhcp.cox.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: 0.0 (/) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1325 Lines: 42 Thanks for all the comments. I just updated the KHGtG with the feedback I received. Go to http://linux.yyz.us/git-howto.html and click reload. Continued criticism^H^H^Hcomments welcome! Two items of note: 1) > automatically. Running the following one-liner every once in a > while would sync your set of tags with Linus: > > git fetch origin `git-ls-remote --tags origin | sed -ne 's|^.*refs/tags/|tag |p'` that's way too long and convoluted to deal with. Once the 'git fetch --tags' changes make it into the official repository (are they there already?), I'll remove all the remaining direct references to running rsync. 2) What is the easiest way to obtain a list of changes present in repository B, that are not present in repository A? I used to use git-changes-script [hacked cg-log script] for this: $ cd /repo/netdev-2.6 $ git-changes-script -L ../linux-2.6 would display all changes in /repo/netdev-2.6 which are not present in /repo/linux-2.6. This is similar to 'git log master..HEAD', except for repositories rather than branches. Jeff - 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/