CVS 使用 rlog 命令列出的日志范围

发布于 2024-11-09 16:44:28 字数 310 浏览 0 评论 0原文

我一直无法找到这个问题的答案。 如果我从命令行运行以下命令,

cvs -d :pserver:*User*:*Pass*@*HostName*:/cvsroot rlog -N -d "2008-08-01 00:00:00 < 2011-05-01 00:00:00" *Module*

打印出的日志的范围是什么?它是否仅包含主干上活动的日志,还是包含所有内容,即所有分支的活动也都包含在内?

注意:这可能是一个幼稚的问题,但我没有足够的 CVS 经验,我需要一个快速而准确的答案,因此没有太多时间来阅读这些内容。

I haven't been able to find an answer for this.
If I run following command from command line

cvs -d :pserver:*User*:*Pass*@*HostName*:/cvsroot rlog -N -d "2008-08-01 00:00:00 < 2011-05-01 00:00:00" *Module*

What is the scope of the logs that are printed out? Does it contains logs only for the activities on the main trunk Or is it everything i.e. activities from all branches are also included?

NOTE: This might be a naive question, but I have not had enough experience with CVS and I need a quick and accurate answer, thus not much time to read up on things.

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

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

发布评论

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

评论(1

浮云落日 2024-11-16 16:44:29

学习这个方法很困难,但是按照命令:

cvs -d :pserver:*User*:*Pass*@*HostName*:/cvsroot rlog -N -d "2008-08-01 00:00:00 < 2011-05-01 00:00:00" *Module*

实际上列出了该模块的所有活动。即主干以及该模块的所有分支上的活动。

要将活动日志限制到特定分支,请使用:

cvs -d :pserver:*User*:*Pass*@*HostName*:/cvsroot rlog -N -d "2008-08-01 00:00:00 < 2011-05-01 00:00:00" -r*BranchName* *Module*

注意:-r 选项和分支名称之间没有空格。

要将活动日志限制为仅主分支(即主干),请使用:

cvs -d :pserver:*User*:*Pass*@*HostName*:/cvsroot rlog -N -d "2008-08-01 00:00:00 < 2011-05-01 00:00:00" -r::HEAD *Module*

Learned this hard way but, following command:

cvs -d :pserver:*User*:*Pass*@*HostName*:/cvsroot rlog -N -d "2008-08-01 00:00:00 < 2011-05-01 00:00:00" *Module*

actually lists all activities for that module. i.e. activities on trunk as well as all branches for this module.

To restrict the activity logs to a specific branch use:

cvs -d :pserver:*User*:*Pass*@*HostName*:/cvsroot rlog -N -d "2008-08-01 00:00:00 < 2011-05-01 00:00:00" -r*BranchName* *Module*

Note: there is no space between -r option and the branch name.

To restrict the activity logs to only main branch i.e. trunk use:

cvs -d :pserver:*User*:*Pass*@*HostName*:/cvsroot rlog -N -d "2008-08-01 00:00:00 < 2011-05-01 00:00:00" -r::HEAD *Module*
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文