How do I export a part of an SVN repository with dependencies?

前端 未结 3 1850
情书的邮戳
情书的邮戳 2021-01-07 02:14

I am trying to migrate a part of an SVN repository using svnadmin dump.

The provided svndumpfilter tool doesn\'t manage copy/move/rename dependencies fr

3条回答
  •  不要未来只要你来
    2021-01-07 02:55

    With dependencies you mean those specified by the property svn:external?

    If yes, I think you should pass to svndumpfilter also the paths referrend in the property. For example, if your project is in http://host/project and the svn:external property is set to http://host/dependencies you can do something like

    svndumpfilter include http://host/project http://host/dependencies < total.dump > project.dump
    

提交回复
热议问题