Is there any way to list all the files added/removed to repository between two selected tags? I tried cvs history but it only shows history records since a particular tag was la
You can use cvs rdiff -s -r <tag1> -r <tag2> <module>.
cvs rdiff -s -r <tag1> -r <tag2> <module>
There is some example output in this answer.