从 Windows 共享结账
我已经在共享文件夹中创建了一个存储库。通常我只是映射一个驱动器并使用文件 URL 签出存储库:
svn checkout file:///T:\MyRepository .
where T: is \\mySharedFolder
是否有某种方法如何在 url 中直接指定共享文件夹的路径?
像这样的东西:
svn checkout \\mySharedFolder\MyRepository .
I have created a repository in a shared folder. Usually I simply mapped a drive and checked out the repository using a file URL:
svn checkout file:///T:\MyRepository .
where T: is \\mySharedFolder
Is there some way how to specify in a url directly a path of a shared folder?
Something like:
svn checkout \\mySharedFolder\MyRepository .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 file://mySharedFolder/MyRepository
Use
file://mySharedFolder/MyRepository