NAME
Git::Class::Worktree
SYNOPSIS
use strict;
use warnings;
use Git::Class::Worktree;
my $work = Git::Class::Worktree->new(path => 'path/to/somewhere');
$work->init;
$work->add('.');
$work->commit;
DESCRIPTION
This is another (experimental) interface to git
executable for convenience. Note that this will change the current directory to the path you specify when you create an object.
AUTHOR
Kenichi Ishigaki, <ishigaki@cpan.org>
COPYRIGHT AND LICENSE
Copyright (C) 2009 by Kenichi Ishigaki.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.