views:

80

answers:

2

I'm attempting to do a repo dump from cli. I have both tortoisesvn (gui) and the CollabNet SVN CLI installed (why? because I'm stupid).

Anyway, when I do the svnadmin dump command, it says svnadmin isn't a recognized command.

What would be the cause of this? The svn repo is hosted with unfuddle if that makes any difference. I'm still pretty green with svn, so bear with me if I'm just being any idiot.

Thanks :)

+1  A: 

As far as i know the svnadmin command is not part of those distributions. In TortoiseSVN there is no command client at all only the graphical client...May be you should check some of the distributed packages from the subversion.apache.org site instead. Have you checked if the path of your installation is in your PATH ?

khmarbaise
Certainly looks that way. I've just checked my installation and only svn.exe and svnversion.exe are installed. You'll need to download the server package for the Collabnet binaries.
the_mandrill
A: 

I have downloaded the slik subversion distribution (from here? http://www.sliksvn.com/en/download) this package does also include the svnadmin program.

With Svnadmin dump REPOPATH -r FROM:TO >>RepoDump.dump I was able to create a dump, with svnadmin load REPOPATH < RepoDump.dump I was aple to load the created dump.

The collabnet distribution did not seam to include this program (at least the version I have loaded).

bikobeko