I have an SVN repository on my hard disk in a directory like:
/home/Desktop/path/to/old_repo
But I need to move this repository to another place
/home/Downloads/path/to/new_repo
an remove all the files in the old directory. I tried using svnadmin dump
, then svn create
and svn load
, but when I remove the old_repo
folder they stop working. In fact, they do not contain any piece of code and just give me some information about log
and status
.
How can I move this repository to a completely different location having it work independently (I want to remove the old one)?