从 Ubuntu 9.10 访问 Windows 上的 svn 存储库
我是 Linux 新手,我正在尝试使用 subclipse 插件设置 eclipse 来访问托管在 Windows 服务器上的 svn 存储库。一切都安装得很好。当我尝试创建新的存储库位置时,我不确定如何识别 sublipse 中的位置。我已成功安装 Windows 共享,并且可以从文件浏览器浏览文件,但我不确定在位置 URL 中输入什么内容。在 Windows 上,我曾经输入 file:///p:/nameOfRepository
谢谢!
I am new to Linux and I am trying to setup eclipse with subclipse plugin to access my svn repository which is hosted on a Windows server. Everything is installed fine. When I try to create a new repository location, I am not sure how to identify the location in sublipse. I have successfully mounted the windows share and I can browse the files from the File browser but I am not sure what to type in the location url. On windows I used to type file:///p:/nameOfRepository
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
subversion 确实支持通过
file:///
访问方案进行本地访问(请参阅维基)。在 Linux 上,您的位置应该沿着file:///your_mount_point/nameOfRepository
编辑:也许首先尝试从命令行访问您的存储库(以使 subclipse 远离游戏,直到您已经找到了正确的路径)。在早期版本中,subclipse 在与 JavaHL 库一起使用时只能连接到本地存储库,而不能与 JavaSVN 库一起使用 - 不知道情况是否仍然如此......
subversion does support local access via the
file:///
access scheme (see wiki). on linux, your location should thus be along the lines offile:///your_mount_point/nameOfRepository
EDIT: maybe first try to access your repository from the command line (to keep subclipse out of the game until you've figured out the correct path). in early versions, subclipse could only connect to a local repository when used with the JavaHL library, not the JavaSVN library -- don't know whether this is still the case though...