svnrdump joined the Subversion tool chain in the Subversion 1.7 release. It is best described as a network-aware version of the svnadmin dump and svnadmin load commands, paired together and released as a separate standalone program. We discuss the process of dumping and loading repository data—using both svnadmin and svnrdump— in the section called “Migrating Repository Data Elsewhere”.
Options in svnrdump are global, just as they are in svn and svnadmin:
svnrdump Options
-
--config-dir
DIR
Instructs Subversion to read configuration information from the specified directory instead of the default location (
.subversion
in the user's home directory).-
--config-option
FILE
:SECTION
:OPTION
=[VALUE
] Sets, for the duration of the command, the value of a runtime configuration option.
FILE
andSECTION
are the runtime configuration file (eitherconfig
orservers
) and the section thereof, respectively, which contain the option whose value you wish to change.OPTION
is, of course, the option itself, andVALUE
the value (if any) you wish to assign to the option. For example, to temporarily disable the use of the compression in the HTTP protocol, use--config-option=servers:global:http-compression=no
. You can use this option multiple times to change multiple option values simultaneously.-
--incremental
Dump a revision or revision range only as a diff against the previous revision, instead of the default, which is begin a dumped revision range with a complete expansion of all contents of the repository as of that revision.
-
--no-auth-cache
Prevents caching of authentication information (e.g., username and password) in the Subversion runtime configuration directories.
-
--non-interactive
In the case of an authentication failure or insufficient credentials, prevents prompting for credentials (e.g., username or password). This is useful if you're running Subversion inside an automated script and it's more appropriate to have Subversion fail than to prompt for more information.
-
--password
PASSWD
Specifies the password to use when authenticating against a Subversion server. If not provided, or if incorrect, Subversion will prompt you for this information as needed.
-
--quiet
(-q
) Requests that the client print only essential information while performing an operation.
-
--revision
(-r
)ARG
Specifies a particular revision or revision range on which to operate.
-
--trust-server-cert
Used with
--non-interactive
to accept any unknown SSL server certificates without prompting.-
--username
NAME
Specifies the username to use when authenticating against a Subversion server. If not provided, or if incorrect, Subversion will prompt you for this information as needed.
Table of Contents