User Tools

Site Tools


software:subvesion

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
software:subvesion [2020/02/22 23:11] – [Set up standard layout] rodolicosoftware:subvesion [2020/07/10 22:37] (current) rodolico
Line 66: Line 66:
 </code> </code>
  
 +===== Moving a repository =====
 +
 +  * [[http://svnbook.red-bean.com/en/1.7/svn.ref.svnadmin.c.dump.html]]
 +  * [[http://svnbook.red-bean.com/en/1.7/svn.ref.svnadmin.c.load.html]]
 +
 +
 +On the old machine
 +<code bash>
 +svnadmin dump --deltas reposname | bzip2 -c > /tmp/reposname.svn.dump.bz2
 +</code>
 +
 +On the new machine
 +<code bash>
 +mkdir reposname
 +svnadmin create reposname
 +bunzip2 -c /tmp/resposname.svn.dump.bz2 | svnadmin load resposname
 +</code>
  
 ===== Maintaining a "stable" tag ===== ===== Maintaining a "stable" tag =====
software/subvesion.txt · Last modified: 2020/07/10 22:37 by rodolico