具有外部主干的 SVN 存储库
我对 SVN 存储库的主干具有只读访问权限,并且我想创建另一个 SVN 存储库,其中的主干取自先前的存储库。
我尝试使用“externals”标签,但是当我克隆主干以创建新分支时,我收到一条错误消息,指出我无法在不同存储库之间执行复制。
还有其他方法吗?第一个存储库是 https://svn.bigr.nl/elastix/trunkpublic 用户和密码都是“elastixguest”。
I have read-only access to the trunk of a SVN repository and I want to create another SVN repository in which the trunk is taken from the previous repository.
I tried using the "externals" tag, but when I clone the trunk to create a new branch I get an error saying that I cannot perform a copy between different repositories.
Is there another way to do it? The first repo is https://svn.bigr.nl/elastix/trunkpublic
both user and password are "elastixguest".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 svnsnyc 怎么样?优点之一是您不需要对旧存储库具有管理员访问权限。你只需要执行两个命令:
init: http ://svnbook.red-bean.com/en/1.5/svn.ref.svnsync.c.init.html
同步:http://svnbook.red-bean.com/en /1.5/svn.ref.svnsync.c.sync.html
How about using svnsnyc? One advantage is you don't need to have admin access to the old repository. You just need to execute two commands:
init: http://svnbook.red-bean.com/en/1.5/svn.ref.svnsync.c.init.html
sync: http://svnbook.red-bean.com/en/1.5/svn.ref.svnsync.c.sync.html