SVN Checkout
With svn checkout, we can check out a working copy from a repository.
svn checkout URL... [PATH]
If PATH is omitted, the basename of the URL will be used as the destination.
SVN checkout help options:
--revision (-r) REV --quiet (-q) --non-recursive (-N) --username USER --password PASS --no-auth-cache --non-interactive --config-dir DIR
Example Usage:
svn checkout svn://<server>/svnrepos/<project name>
svn co svn://<server>/svnrepos/<project name>

Post Comment