|
ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages
|
|
This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles. For more information about the manual page format, see the manual page for manpages(5). |
SVN::Mirror(3) User Contributed Perl Documentation SVN::Mirror(3)
NAME
SVN::Mirror - Mirror remote repository to local Subversion repository
SYNOPSIS
my $m = SVN::Mirror->new (source => $url,
repos => '/path/to/repository',
target_path => '/mirror/project1'
repos_create => 1,
skip_to => 100
);
$m->init;
$m->run;
DESCRIPTION
SVN::Mirror allows you to mirror remote repository to your local subversion repository. Supported
types of remote repository are:
Subversion
with the SVN::Mirror::Ra backend.
CVS, Perforce
with the SVN::Mirror::VCP backend through the VCP framework.
find_remote_rev
AUTHORS
Chia-liang Kao <clkao@clkao.org>
COPYRIGHT
Copyright 2003-2005 by Chia-liang Kao <clkao@clkao.org>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl
itself.
See <http://www.perl.com/perl/misc/Artistic.html
perl v5.8.8 2007-03-19 SVN::Mirror(3)
|
|