CVS 使用 rlog 命令列出的日志范围
我一直无法找到这个问题的答案。 如果我从命令行运行以下命令,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
学习这个方法很困难,但是按照命令:
实际上列出了该模块的所有活动。即主干以及该模块的所有分支上的活动。
要将活动日志限制到特定分支,请使用:
注意:-r 选项和分支名称之间没有空格。
要将活动日志限制为仅主分支(即主干),请使用:
Learned this hard way but, following command:
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:
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: