[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: [TSVN] TortoiseSVN - FAQ

From: Peter Löfgren <list_at_loftux.se>
Date: 2005-05-08 09:28:26 CEST

Brooks Talley wrote:
> User: Brooks Talley, mailto:brooks@frnk.com
> Categories: Other
>
> What is the procedure for migrating an existing SVN repository from
> Berkeley DB to FSFS, such that the change is invisible to clients (same
> repository URL, name, history, etc)?
>
If your repository is on a windows box you can use this script

@echo off
echo Dumping and reloading repositories
svnadmin dump %1 > %1.dump
move %1 %1_old
mkdir %1
svnadmin create --fs-type fsfs %1
svnadmin load %1 < %1.dump
del %1.dump
echo Dump cycle done

Copy and paste to a bat file, i.e convert.bat. As an input argument use
the path to the repo you want to convert.

If your repository is on a unix box, the procedure is pretty much the same.

/Peter Löfgren

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tortoisesvn.tigris.org
For additional commands, e-mail: dev-help@tortoisesvn.tigris.org
Received on Sun May 8 09:28:47 2005

This is an archived mail posted to the TortoiseSVN Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.