问题
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 last added to the history file. The command line solution would be preferable.
回答1:
You can use cvs rdiff -s -r <tag1> -r <tag2> <module>
.
There is some example output in this answer.
来源:https://stackoverflow.com/questions/9062584/cvs-list-all-files-added-removed-between-tags