Name
svn export — Exports a clean directory tree.
Synopsis
svn export [-r REV] URL [PATH]
svn export PATH1 PATH2
Description
The first form exports a clean directory tree from
the repository specified by URL, at revision REV if it
is given, otherwise at HEAD, into PATH. If PATH is
omitted, the last component of the URL is used for the
local directory name.
The second form exports a clean directory tree from
the working copy specified by PATH1 into PATH2. All
local changes will be preserved, but files not under
version control will not be copied.
Accesses Repository
Only if exporting from a URL
Switches
--revision (-r) REV
--quiet (-q)
--force
--username USER
--password PASS
--no-auth-cache
--non-interactive
--config-dir DIR
Examples
Export from your working copy (doesn't print every
file and directory):
$ svn export a-wc my-export
Export complete.
Export directly from the repository (prints every
file and directory):
$ svn export file:///tmp/repos my-export
A my-export/test
A my-export/quiz
…
Exported revision 15.