Move Repository to another Computer

Dec 16, 2013
1 min read
May 27, 2023 09:13 EEST

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