使用 svn://localhost/repos 工作正常。使用 svn+ssh://localhost/repos: 找不到存储库

发布于 2024-11-01 08:11:42 字数 293 浏览 0 评论 0原文

我正在设置一个 svn 存储库。 一切都准备好了。 当我输入 svn list svn://localhost/repos/ 时,它正确显示了存储库。 当我输入 svn list svn+ssh://localhost/repos 时,它说 svn: No repository found in 'svn+ssh://localhost/repos/ktbdbms'

user account and password all correct.

我错过了什么吗?

谢谢

i am setting up a svn repository.
everything got ready.
when i typed svn list svn://localhost/repos/, it showed the repository correctly.
when i typed svn list svn+ssh://localhost/repos, it said svn: No repository found in 'svn+ssh://localhost/repos/ktbdbms'

user account and password all correct.

do i miss anything?

Thanks

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

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

发布评论

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

评论(2

情话难免假 2024-11-08 08:11:43

svn+ssh 使用 svnserve。如果您对 svnserve 执行 pgrep ,它可能会使用 -r /path/to/repos 运行,并且文件系统上的存储库将是 < code>/path/to/repos/ktbdbms

一个常见的解决方案是将 svnserve 移动到 svnserve.bin 并创建一个名为 svnserve 的 bash 脚本,该脚本运行:

#!/bin/bash
svnserve -r /path/to/repos $*

svn+ssh uses svnserve. if you do a pgrep for svnserve it is likely run with -r /path/to/repos and the repository on the filesystem would be /path/to/repos/ktbdbms

a common solution is to move svnserve to svnserve.bin and create a bash script named svnserve which runs:

#!/bin/bash
svnserve -r /path/to/repos $*
情话墙 2024-11-08 08:11:42

您需要阅读更多有关使用 svn:// 与 svn+ssh:// 的信息,此处 在 SVN 书中。在你的机器上使用 svnserve 连接到 localhost 相对容易,设置 svn+ssh:// 有点复杂,需要仔细规划。如果您愿意,请阅读这本书并进行设置。

You need to read up a bit more about using svn:// vs svn+ssh://, here in SVN book. Connecting to localhost, on your machine, with svnserve is relatively easy, setting up svn+ssh:// is a bit more complicated and requires careful planning. Read the book and set it up, if you want to.

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