Move Repository to another Computer

Dec 16, 2013
1 min read
Oct 29, 2023 10:15 CET

Make a dump of the current backup:

svnadmin dump path >svn_dump_path

Copy the file to your new computer and do the following there:

svnadmin create newrepository
svnadmin load newrepository < svn_dump_path

Related Posts