使用svn,离线时检查修订号
我离线了(嗯,确切地说,我的 svn 存储库现在无法访问),但我有一个完全成熟的工作副本,我正在上面工作:-)
现在我需要知道文件的修订号。如何在离线状态下检查特定文件的修订号(顺便说一下,该文件没有 svn:keywords 属性)?
我通常使用 svn ls -v 或 svn log | 检查它们。 head 或 svnblame
(当然他们提供的比我现在想要的更多)。
I'm offline (well, to be exact my svn repository in unreachable right now), but I have a fully fledged working copy on which I am, well, working :-)
Now I need to know the revision number of a file. How can I check the revision number of a particular file (which by the way doesn't have the svn:keywords
property) while being offline?
I usually check them with svn ls -v
or svn log | head
or svn blame
(of course they give more than I'm looking for right now).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用:
svn info FILENAME
Use:
svn info FILENAME
您还可以进入文件夹.svn并检查名为entries的文件,您将看到修订号和作者
You can also enter the folder .svn and check the file named entries, you'll see the revision number and the author