[svnbook commit] r3083 - trunk/src/en/book

cmpilato noreply at red-bean.com
Tue May 20 13:24:40 CDT 2008


Author: cmpilato
Date: Tue May 20 13:24:40 2008
New Revision: 3083

Log:
* src/en/book/ch05-repository-admin.xml
  When demonstrating the split of a single repsitory into three,
  advise folks to pass --ignore-uuid to 'svnadmin load' so the three
  repositories have, you know, unique IDs.

Suggested by: Stefan Küng <tortoisesvn at gmail.com>


Modified:
   trunk/src/en/book/ch05-repository-admin.xml

Modified: trunk/src/en/book/ch05-repository-admin.xml
==============================================================================
--- trunk/src/en/book/ch05-repository-admin.xml	(original)
+++ trunk/src/en/book/ch05-repository-admin.xml	Tue May 20 13:24:40 2008
@@ -2246,20 +2246,23 @@
 
       <para>All that remains now is to create your three new
         repositories, and load each dump file into the right
-        repository:</para>
+        repository, ignoring the UUID found in the dumpstream:</para>
 
       <screen>
-$ svnadmin create calc; svnadmin load calc < calc-dumpfile
+$ svnadmin create calc
+$ svnadmin load --ignore-uuid calc < calc-dumpfile
 <<< Started new transaction, based on original revision 1
      * adding path : Makefile ... done.
      * adding path : button.c ... done.
 …
-$ svnadmin create calendar; svnadmin load calendar < cal-dumpfile
+$ svnadmin create calendar
+$ svnadmin load --ignore-uuid calendar < cal-dumpfile
 <<< Started new transaction, based on original revision 1
      * adding path : Makefile ... done.
      * adding path : cal.c ... done.
 …
-$ svnadmin create spreadsheet; svnadmin load spreadsheet < ss-dumpfile
+$ svnadmin create spreadsheet
+$ svnadmin load --ignore-uuid spreadsheet < ss-dumpfile
 <<< Started new transaction, based on original revision 1
      * adding path : Makefile ... done.
      * adding path : ss.c ... done.




More information about the svnbook-dev mailing list