
VCS::LibCVS::Repository - A CVS Repository.


Represents a CVS Repository.

$repo = VCS::LibCVS::Repository->new($root)
The root of the repository, like this: :pserver:user@cvs.cvshome.org:/cvs
Creates a new Repository object with the specified root.
There is no check that the specified repository actually exists or is accessible.

$root = $repo->get_root()
Returns the root of this repository
$CVS_version = $repo->get_version()
Returns the version of CVS running at this repository
$ignoreChecker = $repo->get_ignoreChecker()
Returns an IgnoreChecker for this repository
if ($repo1->equals($repo2)) {
Returns true if this and the argument represent the same the repository.

VCS::LibCVS