如何跟踪CVS签入

如何跟踪CVS签入

问题描述:

我们最近在Beta版代码的主要分支中创建了一个分支。

We recently created a branch out of the main branch of our code for the beta.

现在,我想检查一下过去一周内分支中所有文件的更改情况。如何从CVS中获取该信息。

Now I want to check what all files have changed in the branch in the last one week. How to get that information out of CVS.

这是什么命令?

从命令行:

cvs log -r BRANCHNAME

在特定日期范围内执行此操作:

Do do it for a certain date-range:

cvs log -r BRANCHNAME -d "1972-09-24"

1972-09-24 实际上是您希望获得比其新的项目的日期。

Where 1972-09-24 is actually your date you'd like to get items newer than.