是否有 svn 命令可以找出更改特定文件或目录的最后修订版本?
是否有 svn 命令可以找出更改特定文件或目录的最后修订版本?
Is there an svn command to find out the last revision to change a particular file or a directory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅浏览 svn book 部分(其中1.6 版):
命令
svn list
应该允许您获取最新版本: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:其中 n 是最新的 n 个修订版。因此,如果您想检查最后的修订版,则 n 将为 1:
通过明智地使用 grep,可以减少返回的信息。
从 Lazarus 邮件列表中收集
where n is the latest n revisions. So if you want to check the last revision it will be n will be 1:
With some judicious use of grep the information returned can be reduced.
Gleaned from the Lazarus mailing list
svn info []
显示的内容之一是Last Changed Rev
,它可能与Revision
- 工作副本的修订版本不同。One of the things that
svn info [<filename>]
shows isLast Changed Rev
, that may differ fromRevision
- working copy's revision.