使用 svn://localhost/repos 工作正常。使用 svn+ssh://localhost/repos: 找不到存储库
我正在设置一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
svn+ssh 使用 svnserve。如果您对 svnserve 执行 pgrep ,它可能会使用 -r /path/to/repos 运行,并且文件系统上的存储库将是 < code>/path/to/repos/ktbdbms
一个常见的解决方案是将
svnserve
移动到svnserve.bin
并创建一个名为 svnserve 的 bash 脚本,该脚本运行:svn+ssh uses svnserve. if you do a
pgrep
forsvnserve
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
tosvnserve.bin
and create a bash script named svnserve which runs:您需要阅读更多有关使用 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.