Merging a part of SVN repository to another repository with history

时光总嘲笑我的痴心妄想 提交于 2019-12-01 06:02:48

Get the dump of sub-branch2 of repoB:

  svnadmin dump /location/of/repoB | svndumpfilter include subbranch2 > my.dump

Merge the dump into branches of repoA:

  svnadmin load /location/of/repoA --parent-dir branches < my.dump

Yes, this is possible. You need to use svnadmin dump and svnadmin load.
For more info, look here: http://blogs.nuxeo.com/dev/2006/04/dump-load-svn-repositories-using-svnadmin-svndumpfilter.html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!