- 论坛徽章:
- 0
|
Yes you can do that,if you have already worked with CVS and Perl CPAN
module Cvs::*.
Workingflow:
use Cvs;
my $cvs = new Cvs (
$path_to_your_repository_dir,
cvsroot => $your_cvs_server_and_cvs _root_path,
password => $your_password_on_cvs_server,
) or craok $cvs::ERROR;
$cvs->checkout($your_prefer_cvs_archiev_name);
# open, modify your *,c or *.h and save it.
$cvs->commit($your_modified_file);
# if Makefile exists in your repository, exec make
# that is done.
# Writing your own code and learn by doing!!!
Just 4 fun, ulmer |
|