按日期获取颠覆日志

发布于 2024-10-02 16:21:27 字数 142 浏览 0 评论 0原文

如何按日期获取 svn 日志?

我尝试这样做

svn log -vr {2010-11-14}:{2010-11-15}

,但它只返回 1 个条目,该条目是在 11 月 12 日提交的。

How can I get svn logs by date?

I tried doing

svn log -vr {2010-11-14}:{2010-11-15}

but it only returns me 1 entry back which is commited on nov 12.

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

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

发布评论

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

评论(1

掩于岁月 2024-10-09 16:21:27

忽略时间信息,您的日志命令将仅显示 11 月 14 日发生的更改。以下文档摘录涵盖了此问题:

svn log -r {2010-11-28}

如果您给出的日期没有
时间戳,例如2010-11-28,
Subversion 假定时间为 00:00:00,
所以寻找最新的
修订版不会返回任何内容
28 日。

如果你想将 28 号包含在
您的搜索,您可以指定
28日与时俱进({"2010-11-28
23:59"}),或者只指定第二天
({2010-11-29})。

Leaving out time information, your log command will only show changes that took place on november 14. The following excerpt from the documentation covers this issue:

svn log -r {2010-11-28}

If you give a date without a
timestamp, such as 2010-11-28,
Subversion assumes a time of 00:00:00,
so looking for the most recent
revision won't return anything on the
28th.

If you want to include the 28th in
your search, you can either specify
the 28th with the time ({"2010-11-28
23:59"}), or just specify the next day
({2010-11-29}).

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