File: README

package info (click to toggle)
libgit-pureperl-perl 0.53-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 368 kB
  • sloc: perl: 3,153; makefile: 4
file content (34 lines) | stat: -rw-r--r-- 739 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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 <http://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.