info-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Determining which files have changed from one set of tagged files to


From: David Taylor
Subject: Re: Determining which files have changed from one set of tagged files to another
Date: Wed, 13 Mar 2002 20:16:23 -0800

Rob Helmer wrote:

>
> Anyone know how to get output like :
>
> cvs rdiff -s -r tag1 -r tag2 modulename
>
> except with commit msgs for every revision that falls
> between tag1 and tag2?
>
> I could use the output of the above command and "cvs log"
> to do this for me ( I just want this for info between releases,
> it doesn't need to be quick :), has anyone done this?
>

cvs rlog -rtag1 -rtag2 `cvs -q rdiff -rtag1 -rtag2 modulename | awk '/^Index:/ 
{print $2}'`

Details are at http://mail.gnu.org/pipermail/info-cvs/2001-June/016732.html

Caveats:
- rdiff fails on binary files
- The number of changed files may exceed your command interpreter's argument 
limit. If so,
you'll need to loop.

dtayl






reply via email to

[Prev in Thread] Current Thread [Next in Thread]