What do I need to do to make it a completely independent entity?
The only link between the new repository and the original are a number of revision properties that are used by svnsync synchronize
. You can safely remove those like this:
svn propdel --revprop -r 0 svn:sync-from-uuid http://svn.example.com
svn propdel --revprop -r 0 svn:sync-last-merged-rev http://svn.example.com
svn propdel --revprop -r 0 svn:sync-from-url http://svn.example.com
This doesn't do much except making sure that svnsync synchronize
cannot be run anymore.
edit: Just thought of something else. You might have used svn:externals
properties in your projects for pointing to another repository, or another location within the same repository.
One should use the relative URL syntax for links within the same repository, in which case there is no problem. But if an absolute URL was used for that, then such links will continue to point to the original repository after an svnsync
. You can inspect all svn:externals
properties like this (might take a while, recursively scans all folders):
svn propget -R svn:externals http://svn.example.com/
svn:externals
properties on existing revisions, though? – Dottie