A Pure Perl interface to Git repositories
Perl
Switch branches/tags
Nothing to show
Clone or download
Pull request Compare This branch is 27 commits behind bobtfish:master.
carview.php?tsp= Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
carview.php?tsp= lib/Git
carview.php?tsp= t
carview.php?tsp= .gitignore
carview.php?tsp= CHANGES
carview.php?tsp= MANIFEST.SKIP
carview.php?tsp= Makefile.PL
carview.php?tsp= README
carview.php?tsp= test-project-packs.tgz
carview.php?tsp= test-project-packs2.tgz
carview.php?tsp= test-project.tgz

README

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);
DESCRIPTION
    This module is a Pure Perl interface to Git repositories.
    It was mostly based on Grit <https://grit.rubyforge.org/>.
METHODS
    master
    get_object
    get_object_packed
    get_object_loose
    create_object
    all_sha1s
AUTHOR
    Leon Brocard <acme@astray.com>
COPYRIGHT
    Copyright (C) 2008, Leon Brocard.
LICENSE
    This module is free software; you can redistribute it or modify it under
    the same terms as Perl itself.