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

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

    To get a list of files that have changed between one version and another using the standard cvs commands:

    cvs -q log -NSR -rV-1-0-69::V-1-0-70 2>/dev/null >log.txt
    

    Or alternatively, to get a list of commit comments just drop the -R:

    cvs -q log -NS -rV-1-0-69::V-1-0-70 2>/dev/null >log.txt
    

    Where you replace V-1-0-69 and V-1-0-70 with the revisions you're comparing.

提交回复
热议问题