logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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

Author

       Leon Brocard <acme@astray.com>

Contributors

       Chris Reinhardt
       Tomas (t0m) Doran
       Dan (broquaint) Brook
       Alex Vandiver
       Dagfinn Ilmari Mannsåker

Description

       This module is a Pure Perl interface to Git repositories.

       It was mostly based on Grit <http://grit.rubyforge.org/>.

License

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

perl v5.38.2                                       2024-03-06                                 Git::PurePerl(3pm)

Maintainance

       This module is maintained in git at <http://github.com/broquaint/git-pureperl/>.

       Patches are welcome, please come speak to one of the Gitalist team on "#gitalist".

Methods

       master
       get_object
       get_object_packed
       get_object_loose
       create_object
       all_sha1s

Name

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

Synopsis

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

See Also