
VCS::LibCVS::Branch - A named branch in the repository.


Represents a named branch in the repository.
This branch may exist on any number of files. This class is not much more than a wrapper around a branch name.
The main branch (usually branch number 1) is named using the special name .TRUNK.

$branch = VCS::LibCVS::Branch->new($repo, $name)

$b_name = $branch->get_name()
if ($branch->equals($other_branch)) { . . .

VCS::LibCVS