CVS: List all files changed between tags (or dates)

前端 未结 7 768
自闭症患者
自闭症患者 2021-01-29 21:02

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

7条回答
  •  悲哀的现实
    2021-01-29 21:50

    The best tool I've found for this is a perl script called cvs2cl.pl. This can generate a change list in several different formats. It has many different options, but I've used the tag-to-tag options like this:

    cvs2cl.pl --delta dev_release_1_2_3:dev_release_1_6_8
    

    or

    cvs2cl.pl --delta dev_release_1_2_3:HEAD
    

    I have also done comparisons using dates with the same tool.

提交回复
热议问题