是否有 svn 命令可以找出更改特定文件或目录的最后修订版本?

发布于 2024-10-09 20:59:16 字数 38 浏览 2 评论 0原文

是否有 svn 命令可以找出更改特定文件或目录的最后修订版本?

Is there an svn command to find out the last revision to change a particular file or a directory?

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

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

发布评论

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

评论(3

听风吹 2024-10-16 20:59:16

请参阅浏览 svn book 部分(其中1.6 版):

命令 svn list 应该允许您获取最新版本:

如果您想要更详细的列表,请传递 --verbose (-v) 标志以获得如下输出:

$ svn list -v http://svn.collab.net/repos/svn
  20620 harry            1084 Jul 13  2006 README
  23339 harry                 Feb 04 01:40 branches/
  21282 sally                 Aug 27 09:41 developer-resources/
  23198 harry                 Jan 23 17:17 tags/
  23351 sally                 Feb 05 13:26 trunk/

See the Browsing section of the svn book (in it 1.6 edition):

The command svn list should allow you to get the laster revision:

If you want a more detailed listing, pass the --verbose (-v) flag to get output like this:

$ svn list -v http://svn.collab.net/repos/svn
  20620 harry            1084 Jul 13  2006 README
  23339 harry                 Feb 04 01:40 branches/
  21282 sally                 Aug 27 09:41 developer-resources/
  23198 harry                 Jan 23 17:17 tags/
  23351 sally                 Feb 05 13:26 trunk/
情何以堪。 2024-10-16 20:59:16
svn log -l n <file/directory>

其中 n 是最新的 n 个修订版。因此,如果您想检查最后的修订版,则 n 将为 1:

svn log -l 1 <file>

通过明智地使用 grep,可以减少返回的信息。

从 Lazarus 邮件列表中收集

svn log -l n <file/directory>

where n is the latest n revisions. So if you want to check the last revision it will be n will be 1:

svn log -l 1 <file>

With some judicious use of grep the information returned can be reduced.

Gleaned from the Lazarus mailing list

拥抱我好吗 2024-10-16 20:59:16

svn info [] 显示的内容之一是 Last Changed Rev,它可能与 Revision - 工作副本的修订版本不同。

One of the things that svn info [<filename>] shows is Last Changed Rev, that may differ from Revision - working copy's revision.

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