Is there any way to list all the files that have changed between two tags in CVS?
Every time we do a release we apply a tag to all the files in that release. I want to f
I prefer using rdiff and -s option
rdiff
-s
cvs rdiff -s -r RELEASE_1_0 -r RELEASE_1_1 module > diffs
rdiff does not require a sandbox; -s gives you a summary of the changes.