From owner-freebsd-questions@FreeBSD.ORG Thu Feb 12 17:48:43 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1DFB1065675 for ; Thu, 12 Feb 2009 17:48:43 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.freebsd.org (Postfix) with ESMTP id F10328FC12 for ; Thu, 12 Feb 2009 17:48:42 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from kobe.laptop (ppp-94-64-209-247.home.otenet.gr [94.64.209.247]) (authenticated bits=128) by igloo.linux.gr (8.14.3/8.14.3/Debian-5) with ESMTP id n1CHm99J020879 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 12 Feb 2009 19:48:15 +0200 Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.3/8.14.3) with ESMTP id n1CHm2DF023168; Thu, 12 Feb 2009 19:48:02 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by kobe.laptop (8.14.3/8.14.3/Submit) id n1CHlxkT023167; Thu, 12 Feb 2009 19:47:59 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) From: Giorgos Keramidas To: Dan Nelson References: <49927A85.2030809@polymtl.ca> <200902102307.35960.fbsd.questions@rachie.is-a-geek.net> <20090212173010.GT85840@dan.emsphone.com> Date: Thu, 12 Feb 2009 19:47:58 +0200 In-Reply-To: <20090212173010.GT85840@dan.emsphone.com> (Dan Nelson's message of "Thu, 12 Feb 2009 11:30:10 -0600") Message-ID: <87mycrmtrl.fsf@kobe.laptop> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-MailScanner-ID: n1CHm99J020879 X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-3.955, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.44, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: Mel , =?iso-8859-1?Q?Yann-Ga=EBl_Gu=E9h=E9neuc?= , freebsd-questions@freebsd.org Subject: Re: Accessing the complete log (rlog) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Feb 2009 17:48:43 -0000 On Thu, 12 Feb 2009 11:30:10 -0600, Dan Nelson wrote: > Yet another option is to use the Subversion repository instead of CVS: > > svn log -v -r 1:HEAD svn://svn.freebsd.org/base > > will dump all commitlogs starting with the first. Probably not > recommended if you are going to scan through every commit, but handy > if you want to pick and choose, and much much faster than CVS. What > changes were made to ufs between 1995 and 1996: > > svn log -r '{1995-01-01}:{1996-01-01}' svn://svn.freebsd.org/base/head/sys/ufs If you want even faster results, you can *mirror* the svn repository with svnsync :) Then the diff options are exactly the same, but for the repo-url you can use `file:///local/path/to/mirror', i.e.: svn log -r '{1995-01-01}:{1996-01-01}' file:///svnroot/base/head/sys/ufs