I have a project managed with Subversion. That project uses svn:externals to link to other repositories. Now I want to replace the externals with the actual data they refer to. How can I do that? I would need to copy between two repositories, but that is not supported by the command line client. I also want to preserve the properties like svn:mime-type. To add
or import
the data would use my auto-props or none, but I need the original properties. I do not have server access.
The best solution I could come up with is svn merge -r 0:123 http://repo.svn/path/to/external external
, but that doesn't copy the very first version of the external resource and all I get is tree conflicts.
This question is similar to How to copy between Subversion repositories preserving properties but not preserving history, but I cannot use svnadmin load
.