svn 日志 - svn: '.'不是工作副本
我收到“svn:'.'”不是工作副本”当我使用 svn log 命令时。
我知道我需要一个工作副本才能使日志命令正常工作,但这可以直接在存储库上完成吗?
我的目标是显示存储库的信息(更改历史记录)。我认为每当我需要日志信息时更新工作副本并不是一个好的解决方案。
有没有替代解决方案,或者每次我需要登录时更新工作副本是唯一的方法?
提前致谢。
I'm getting "svn: '.' is not a working copy" when i use the svn log command.
I know that i need a working copy for the log command to work but can this be done directly on a repository?
My goal is to display the information (change history) of a repository. I think updating the working copy whenever i need the log information is not a good solution.
Is there an alternative solution to this or updating a working copy every time i need to log is the only way to go?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试 svn log [repository_url]
它将获取特定存储库的日志,而不是本地签出的存储库。
请参阅此文档。
Try
svn log [repository_url]
That will get the log of a particular repository rather than the local, checked-out repository.
See this documentation.
使用
svnlook log
。Use
svnlook log <repos_path>
.如果您不想提供完整的 URL,但您确实有一个工作副本,您还可以指定您想要存储库中的 HEAD 修订版:
省略 -r 时的默认值就好像您指定了 < code>BASE:1 只会为您提供将最新版本拉入工作副本的更改。
If you don't want to supply the full URL, but you DO have a working copy handy, you can also specify that you want the HEAD revision in the repository:
The default when you omit the -r is as if you had specified
BASE:1
which will only give you changes up to the latest revision pulled down into the working copy.