用于获取存储库简要历史记录的 CVS 命令
我正在使用以下命令来获取 CVS 存储库的简要历史记录。
cvs -d :pserver:*User*:*Password*@*Repo* rlog -N -d "*StartDate* < *EndDate*" *Module*
除了一个小问题之外,这工作得很好。它列出了在该存储库中的每个文件上创建的所有标签。我想要标签信息,但我只想要在指定日期范围内创建的标签。我如何更改此命令才能做到这一点。
I am using following command to get a brief history of the CVS repository.
cvs -d :pserver:*User*:*Password*@*Repo* rlog -N -d "*StartDate* < *EndDate*" *Module*
This works just fine except for one small problem. It lists all tags created on each file in that repository. I want the tag info, but I only want the tags that are created in the date range specified. How do I change this command to do that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有找到使用 rlog 命令本地执行此操作的方法。面对这个问题,我会编写一个 Perl 脚本来解析命令的输出,将标签与我想要的日期范围相关联并打印它们。
另一个解决方案是直接解析 ,v 文件,但我还没有找到任何强大的库来执行此操作。我更喜欢 Perl 来完成此类任务,而且解析模块的质量似乎不是很高。
I don't see a way to do that natively with the rlog command. Faced with this problem, I would write a Perl script to parse the output of the command, correlate the tags to the date range that I want and print them.
Another solution would be to parse the ,v files directly, but I haven't found any robust libraries for doing that. I prefer Perl for that type of task, and the parsing modules don't seem to be very high quality.