svn 日志 - svn: '.'不是工作副本

发布于 2024-08-31 06:32:39 字数 209 浏览 4 评论 0原文

我收到“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 技术交流群。

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

发布评论

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

评论(3

篱下浅笙歌 2024-09-07 06:32:39

尝试 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.

溺深海 2024-09-07 06:32:39

使用svnlook log

Use svnlook log <repos_path>.

樱花坊 2024-09-07 06:32:39

如果您不想提供完整的 URL,但您确实有一个工作副本,您还可以指定您想要存储库中的 HEAD 修订版:

svn log -r HEAD:1

省略 -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:

svn log -r HEAD:1

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.

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