Index: src/en/book/ch09-reference.xml =================================================================== --- src/en/book/ch09-reference.xml (revision 3442) +++ src/en/book/ch09-reference.xml (working copy) @@ -7725,6 +7725,14 @@ + + + + Used with to accept + any unknown SSL server certificates without prompting. + + + @@ -7789,6 +7797,7 @@ --source-username ARG --sync-password ARG --sync-username ARG +--trust-server-cert @@ -7846,6 +7855,68 @@ + + + + svnsync + subcommands + info + + + + svnsync info + Print information about the synchronization + of a destination repository. + + + Synopsis + svnsync info DEST_URL + + + Description + + Print the synchronization source URL, source repository + UUID and the last revision merged from the source to the + destination repository at DEST_URL. + + + + Alternate names + None + + + + Options + + +--config-dir DIR +--no-auth-cache +--non-interactive +--source-password ARG +--source-username ARG +--sync-password ARG +--sync-username ARG +--trust-server-cert + + + + + Examples + + Print the synchronization information of a mirror + repository: + + +$ svnsync info file:///var/svn/repos-mirror +Source URL: http://svn.example.com/repos +Source Repository UUID: e7fe1b91-8cd5-0310-98dd-2f12e793c5e8 +Last Merged Revision: 47 +$ + + + + + @@ -7894,6 +7965,7 @@ --source-username ARG --sync-password ARG --sync-username ARG +--trust-server-cert @@ -7977,6 +8049,7 @@ --source-username ARG --sync-password ARG --sync-username ARG +--trust-server-cert Index: src/en/book/ch05-repository-admin.xml =================================================================== --- src/en/book/ch05-repository-admin.xml (revision 3442) +++ src/en/book/ch05-repository-admin.xml (working copy) @@ -1241,7 +1241,7 @@ svnsync - The svnsync program, which is new to + The svnsync program, which was new to the 1.4 release of Subversion, provides all the functionality required for maintaining a read-only mirror of a Subversion repository. The program really has one @@ -1270,6 +1270,7 @@ initialize (init) synchronize (sync) copy-revprops + info help (?, h) $ @@ -2698,7 +2699,7 @@ repository, simply repeat the svnsync synchronize command, and it will happily pick up right where it left off. In fact, as new revisions appear in - the source repository, this is exactly what you to do + the source repository, this is exactly what you do to keep your mirror up to date. @@ -2787,6 +2788,23 @@ own special properties in revision 0 of the source repository, it simply ignores them. + In Subversion 1.6, an svnsync info + subcommand has been added to easily display the special + bookkeeping properties in the destination repository. + + +$ svnsync help info +info: usage: svnsync info DEST_URL + +Print information about the synchronization destination repository +located at DEST_URL. +… +$ svnsync info http://svn.example.com/svn-mirror +Source URL: http://svn.collab.net/repos/svn +Source Repository UUID: 612f8ebc-c883-4be0-9ee0-a4e9ef946e3a +Last Merged Revision: 23408 +$ + There is, however, one bit of inelegance in the process.