
Git::PurePerl - A Pure Perl interface to Git repositories

my $git = Git::PurePerl->new(
directory => '/path/to/git/'
);
$git->master->committer;
$git->master->comment;
$git->get_object($git->master->tree);

This module is a Pure Perl interface to Git repositories.
It was mostly based on Grit http://grit.rubyforge.org/.


Leon Brocard <acme@astray.com>

Copyright (C) 2008, Leon Brocard.

This module is free software; you can redistribute it or modify it under the same terms as Perl itself.