Indrek Rebane <indrek@bps.co.ee> writes:
> Hi,
>
> Due some coincidents i managed to get directory in repository with 3
> byte name: 0xa8, 0xe7, 0xeb. Is there any simple way to get rid of
> that directory in repository. svn is giving xml parse error if you try
> to do anything with directory or when you do 'svn ls' on parent
> folder. Over web, or with DAV client, one can see entry and it's
> contents.
$ mv repos old-repos
$ svnadmin dump old-repos > dumpfile
$ emacs dumpfile # remove the Node-path: record which marks the
# addition of that directory ... or just give it a
# new name.
$ svnadmin create repos
$ svnadmin load repos < dumpfile
$ # copy over any hook scripts or custom mods to the stuff in old-repos
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue May 6 16:46:34 2003