SVN+SSH 到 OS X 上的特定卷
我正在尝试访问 OS X(雪豹)服务器上的 svn 存储库。系统管理员在该计算机上创建了一个新卷(卷名称为“svn”),仅用于 svn 存储库。
在 svn 卷上,我创建了一个名为“repo”的目录。在仓库中,我创建了一个名为“test”的存储库。
我正在尝试使用安装在 WinXP 机器上的 tortoiseSVN 访问测试存储库。 连接看起来像...
svn+ssh://server.name.org/svn/repo/test
它似乎验证正常,但告诉我它在那里找不到存储库。
我做错了什么?
我认为这与错误地寻址卷名有关,但我正在为如何告诉 ssh 在该机器上安装哪个卷绘制一个完整的空白。
谢谢。
I'm trying to access a svn repo on an OS X (snow leopard) server. The sys admin created a new volume on that machine (volume name is "svn") just for svn repositories.
On the svn volume, I created a directory called "repo". In repo, I created a repository called "test".
I'm trying to access the test repo using tortoiseSVN installed on a WinXP box.
The connection looks like...
svn+ssh://server.name.org/svn/repo/test
It seems to authenticate ok, but tells me it can't find a repository there.
What am I doing wrong?
I assume it's something to do with addressing the volume name incorrectly, but I'm drawing a compete blank for how to tell ssh what volume on that machine to mount.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
存储库的本地路径是
/svn/repo/test
吗?我假设如果您有一个名为 svn 的卷,它将位于/Volumes
中,并且您将使用svn+ssh://server.name.org/Volumes/svn/ repo/test
连接到它。Is the local path to the repository
/svn/repo/test
? I would assume that if you've got a volume named svn it would be in/Volumes
and you'd usesvn+ssh://server.name.org/Volumes/svn/repo/test
to connect to it.哦。
svn+ssh://server.name.org/Volumes/svn/repo/test
这有效。
我觉得自己像个白痴。
Doh.
svn+ssh://server.name.org/Volumes/svn/repo/test
This works.
I feel like such an idiot.