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

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

    DLira's method gives a lot of detail, including all the changes.

    To just get a list of files, this works:

    cvs diff -N -c -r RELEASE_1_0 -r RELEASE_1_1 | grep "Index:" > diffs
    

提交回复
热议问题