克隆/镜像 SVN 存储库
我需要将远程站点上的 SVN 存储库克隆到我的服务器。我可以访问 SVN 存储库。但是当我克隆时,我希望存储库的整个历史保持完整。有哪些可能的方法可以做到这一点?
I need to clone a SVN repo which is there on a remote site to my server. I have access to the SVN repo. But when I clone I want the entire history of the repo to be intact. What are the possible ways of doing this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现有存储库的转储
svnadmin dump D:\Repositories\myexistsingproject > myexistsingproject.dump
创建一个新的存储库
svnadmin create D:\Repositories\mynewproject
加载现有存储库的备份
svnadmin load D:\Repositories\mynewproject
svnadmin load D:\Repositories\mynewproject < myexistsingproject.dump
dump of your existing repo
svnadmin dump D:\Repositories\myexistsingproject > myexistsingproject.dump
create a new repo
svnadmin create D:\Repositories\mynewproject
load the back up of the existing repo
svnadmin load D:\Repositories\mynewproject < myexistsingproject.dump