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

Reply via email to