September 2009
Beginner
942 pages
85h 34m
English
load
svnadmin load repos_pathRead a dumpfile-formatted stream from standard input, committing new revisions into the repository’s filesystem. Send progress feedback to standard output.
| --force-uuid |
| --ignore-uuid |
| --parent-dir |
| --quiet (-q) |
This shows the beginning of loading a repository from a backup file (made, of course, with svn dump):
$ svnadmin load /usr/local/svn/restored < repos-backup
<<< Started new txn, based on original revision 1
* adding path : test ... done.
* adding path : test/a ... done.
...Or, to load into a subdirectory:
$svnadmin load --parent-dir new/subdir/for/project \>/usr/local/svn/restored < repos-backup<<< Started new txn, based on original revision 1 * adding path : test ... done. * adding path : test/a ... done. ...