如何跟踪 CVS 签到

发布于 2024-08-31 17:06:48 字数 98 浏览 3 评论 0原文

我们最近在测试版代码的主分支之外创建了一个分支。

现在我想检查过去一周分支中所有文件都发生了哪些更改。如何从 CVS 中获取该信息。

这个命令是什么?

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

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.

What is the command for this ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请帮我爱他 2024-09-07 17:06:48

从命令行:

cvs log -r BRANCHNAME

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

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

其中 1972-09-24 实际上是您想要获取更新项目的日期。

From the command line:

cvs log -r BRANCHNAME

Do do it for a certain date-range:

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

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文