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

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

    I prefer using rdiff and -s option

    cvs rdiff -s  -r RELEASE_1_0 -r RELEASE_1_1 module > diffs
    

    rdiff does not require a sandbox; -s gives you a summary of the changes.

提交回复
热议问题