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

前端 未结 7 674
自闭症患者
自闭症患者 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:53

    To get the list of files between two dates using CVS:

    cvs diff -N -c -D YYYY-MM-DD -D YYYY-MM-DD | grep "Index:" > diff.out
    

    More information on accepted dates for the -D flag: http://docs.freebsd.org/info/cvs/cvs.info.Common_options.html

    0 讨论(0)
提交回复
热议问题