从一个 Subversion 存储库迁移到多个存储库
在 Windows 上运行我有一个项目的存储库,我现在想将一个完全不相关的项目置于其自己的存储库中的源代码控制之下。我读过关于每个项目使用一个存储库或将所有项目放在一个存储库中的各种争论,对我来说,我绝对更喜欢每个项目一个存储库选项,但我不确定如何做到这一点。
我的设置非常简单,我是唯一的用户,存储库与签出到的计算机位于同一台计算机上,并且我使用来自 CollabNet 的 svnserve
我的存储库是顶级的,因此我的签出代码指向 svn://localhost 和我的存储库看起来像这个
C:\Repository C:\存储库\conf C:\存储库\db C:\存储库\挂钩 c:\Repository\logs
如何让 svnserve 为多个存储库提供服务?
Running on Windows I have a repository for a project, I would now like to put a completely unrelated project under source control within its own repository. I've read the various debates about using one repository per project or having all projects in one repository and for me I definitently prefer the one reposistory per project option but Im unsure how to do it.
My setup is very simple, Im the only user and the repository is on the same machine as it is checked out to, and I use svnserve from CollabNet
My repository is top level so my checkout code points to svn://localhost and my repository looks like this
C:\Repository
C:\Repository\conf
C:\Repository\db
C:\Repository\hooks
c:\Repository\logs
How do I get svnserve to serve multiple repostories ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
svnserve 最好的文档不是 SVN 文档(我认为),而是 TortoiseSVN 文档。阅读 http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn- serversetup-svnserve.html。
您必须在第一个存储库旁边创建另一个存储库,并将根目录设置为两个存储库的父目录。
您还必须重新定位现有的工作副本。
The best documentation for svnserve is not the SVN documentation, IMO, but the TortoiseSVN one. Read http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-serversetup-svnserve.html.
You'll have to create another repository next to the first one and set the root directory to the parent directory of the two repositories.
You'll also have to relocate your existing working copies.
您可以为 --root 标志提供所有存储库所在的目录。
您可以在这里阅读: http://tortoisesvn.net/docs/发布/TortoiseSVN_en/tsvn-serversetup-svnserve.html
You can provide the --root flag a directory where all your repositories are located at.
You can read about it here: http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-serversetup-svnserve.html