Ok that worked beautifully, thank you again. :)

----Original Message Follows----
From: Robert Clark <[EMAIL PROTECTED]>
To: info-cvs@gnu.org
Subject: Re: How do I get a barebone stripped off list of files changedbetween 2 builds?
Date: Tue, 12 Jul 2005 16:40:05 -0400
MIME-Version: 1.0
Received: from lists.gnu.org ([199.232.76.165]) by mc9-f9.hotmail.com with Microsoft SMTPSVC(6.0.3790.211); Tue, 12 Jul 2005 18:38:23 -0700 Received: from localhost ([127.0.0.1] helo=lists.gnu.org)by lists.gnu.org with esmtp (Exim 4.43)id 1DsWDl-0003BE-94for [EMAIL PROTECTED]; Tue, 12 Jul 2005 21:39:33 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43)id 1DsS0u-00053P-Tgfor info-cvs@gnu.org; Tue, 12 Jul 2005 17:10:01 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43)id 1DsS0r-000520-QOfor info-cvs@gnu.org; Tue, 12 Jul 2005 17:09:59 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org)by lists.gnu.org with esmtp (Exim 4.43) id 1DsS0q-000502-FOfor info-cvs@gnu.org; Tue, 12 Jul 2005 17:09:57 -0400 Received: from [12.106.87.68] (helo=irvbhxw02.prod.quest.corp)by monty-python.gnu.org with esmtp (Exim 4.34) id 1DsRfn-0007kS-3Tfor info-cvs@gnu.org; Tue, 12 Jul 2005 16:48:11 -0400 Received: from tormbxw01.prod.quest.corp ([10.4.100.91]) byirvbhxw02.prod.quest.corp with Microsoft SMTPSVC(6.0.3790.211); Tue, 12 Jul 2005 13:40:07 -0700 Received: from tor106065.prod.quest.corp ([10.4.114.58]) bytormbxw01.prod.quest.corp with Microsoft SMTPSVC(5.0.2195.6713);Tue, 12 Jul 2005 16:40:06 -0400
X-Message-Info: JGTYoYF78jEHjJx36Oi8+Z3TmmkSEdPtfpLB7P/ybN8=
Organization: Quest Software Inc.
User-Agent: KMail/1.8.1
References: <[EMAIL PROTECTED]>
X-Face: @wf=R>`Gp1sqW"$*(jmq~x\Y:on!638~obu4W34T^iIADeQK]<lx2S`sg;`ecD/*g]<^,q
        K>WA}}rUgp4Ih&a3^:<~P&$|P|2"Ad=8J<Mx#IPDX/PNbK0}{gLmf^-_V4fiR)!Z<An[5w
        |Aij./#K!jiw<6zMOY}W/,[l(%0beg9'2"">_<s5#x5v7QZ$Pn67lUsJSsDyIF|#:9Cy#D
        i?~]{X:ma68Crle{V.REz"twUaW>&^Y.qHk1)8i[n/[#/~oi$,g(:/)gt6"Fm^GW!BBsD
        +RP"I3Xb~I6OH#&2^==29GQ~5UAfE._cNv.V4{qdw2uBp
X-OriginalArrivalTime: 12 Jul 2005 20:40:06.0564 (UTC)FILETIME=[E3372640:01C58721]
X-BeenThere: info-cvs@gnu.org
X-Mailman-Version: 2.1.5
Precedence: list
List-Id: Announcements and discussions for the CVS version control system<info-cvs.gnu.org> List-Unsubscribe: <http://lists.gnu.org/mailman/listinfo/info-cvs>,<mailto:[EMAIL PROTECTED]>
List-Archive: <http://lists.gnu.org/pipermail/info-cvs>
List-Post: <mailto:info-cvs@gnu.org>
List-Help: <mailto:[EMAIL PROTECTED]>
List-Subscribe: <http://lists.gnu.org/mailman/listinfo/info-cvs>,<mailto:[EMAIL PROTECTED]>
Errors-To: [EMAIL PROTECTED]
Return-Path: [EMAIL PROTECTED]

On Tuesday July 12, 2005 03:58 pm, "S I" <[EMAIL PROTECTED]> wrote:
> I'm trying to get a stripped down list of files modified and
> committed between 2 builds or a build and my working folder in CVS.
>  I would just like to see the path/filename only.

What I generally do is use the rdiff command with the -q and -s (for
shout output) options. Something like:

cvs -q rdiff -s -r TAG1 -r TAG2 module.

You can substitute any valid combination of -r and -D options to
restrict the output to the range you want. So in this case, your
example would be:

cvs -q rdiff -s -r HEAD -D yesterday your-module-name > cvsHist1.txt

- Rob

--
Robert J. Clark
[EMAIL PROTECTED]


_______________________________________________
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs




_______________________________________________
Info-cvs mailing list
Info-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/info-cvs

Reply via email to