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
To get a list of files that have changed between one version and another using the standard cvs commands:
cvs -q log -NSR -rV-1-0-69::V-1-0-70 2>/dev/null >log.txt
Or alternatively, to get a list of commit comments just drop the -R
:
cvs -q log -NS -rV-1-0-69::V-1-0-70 2>/dev/null >log.txt
Where you replace V-1-0-69
and V-1-0-70
with the revisions you're comparing.