Hello,
If I understand the question correctly, you can do that only by SVN history 
modifications using 
svnadmin load/dump commands:

$ svnadmin dump path/to/svn/repository > svn.dump
$ svnadmin create path/to/translated/svn/repository
$ svnadmin load --parent-dir trunk path/to/translated/svn/repository < svn.dump

If you want to use SVNKit, you can use "jsvnadmin" command instead of 
"svnadmin". If you want to do 
that from Java code, you may use

SVNAdminClient#doDump,
SVNAdminClient#doCreateRepository,
and
SVNAdminClient#doLoad

methods that correspond to these commands.

--
Dmitry Pavlenko,
TMate Software,
http://subgit.com/ - git-svn bridge

> Hi all
>                 How can I change the repository template(for ex from blank
> one to one with standard trunk, branch, tags structure ) using svn kit.
> Thanks in advance

Reply via email to