1Git::PurePerl(3) User Contributed Perl Documentation Git::PurePerl(3)
2
3
4
6 Git::PurePerl - A Pure Perl interface to Git repositories
7
9 my $git = Git::PurePerl->new(
10 directory => '/path/to/git/'
11 );
12 $git->master->committer;
13 $git->master->comment;
14 $git->get_object($git->master->tree);
15
17 This module is a Pure Perl interface to Git repositories.
18
19 It was mostly based on Grit <http://grit.rubyforge.org/>.
20
22 master
23 get_object
24 get_object_packed
25 get_object_loose
26 create_object
27 all_sha1s
28
30 This module is maintained in git at
31 <http://github.com/broquaint/git-pureperl/>.
32
33 Patches are welcome, please come speak to one of the Gitalist team on
34 "#gitalist".
35
37 Leon Brocard <acme@astray.com>
38
40 Chris Reinhardt
41 Tomas (t0m) Doran
42 Dan (broquaint) Brook
43 Alex Vandiver
44 Dagfinn Ilmari Mannsåker
45
47 Copyright (C) 2008, Leon Brocard and the above mentioned contributors.
48
50 This module is free software; you can redistribute it or modify it
51 under the same terms as Perl itself.
52
53
54
55perl v5.36.0 2023-01-20 Git::PurePerl(3)