用于获取存储库简要历史记录的 CVS 命令

发布于 2024-11-09 06:54:56 字数 245 浏览 0 评论 0原文

我正在使用以下命令来获取 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 技术交流群。

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

发布评论

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

评论(1

紫﹏色ふ单纯 2024-11-16 06:54:56

我没有找到使用 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.

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