info-cvs
[Top][All Lists]
Advanced

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

RE: How to see what files have changed in a branch


From: Andrew Gilmartin
Subject: RE: How to see what files have changed in a branch
Date: Fri, 10 Nov 2000 13:44:10 -0500

 > Is there a CVS command, utility or process that can tell me
> what files have changed in the branch vs. which ones have been
> untouched and
> are the same as the ones in the trunk?

If you have the 'list' patch installed than the following might work well
enough

        cvs list -r HEAD   module | sort -k 6 > /tmp/head
        cvs list -r BRANCH module | sort -k 6 > /tmp/branch
        diff /tmp/head /tmp/branch

-- Andrew





reply via email to

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