Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/book/git-database
http://metacpan.org/release/Git-Database
https://github.com/book/git-database
Last synced: about 1 month ago
JSON representation
http://metacpan.org/release/Git-Database
- Host: GitHub
- URL: https://github.com/book/git-database
- Owner: book
- Created: 2013-07-27T15:07:00.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2019-04-26T16:36:21.000Z (over 5 years ago)
- Last Synced: 2024-10-03T12:36:24.156Z (4 months ago)
- Language: Perl
- Homepage:
- Size: 269 KB
- Stars: 0
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
README
NAME
Git::Database - Provide access to the Git object database
SYNOPSIS
# get a store
my $r = Git::Repository->new();# build a backend to access the store
my $db = Git::Database::Backend::Git::Repository->new( store => $r );# or let Git::Database figure it out by itself
my $db = Git::Database->new( store => $r );DESCRIPTION
Git::Database provides access from Perl to the object database stored in a
Git repository. It can use any supported Git wrapper to access the Git
object database maintained by Git.Git::Database is actually a factory class: "new" returns backend
instances.SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Git::Database
You can also look for information at:
* RT: CPAN's request tracker
* MetaCPAN
AUTHOR
Philippe Bruhat (BooK) .
COPYRIGHT
Copyright 2013-2019 Philippe Bruhat (BooK), all rights reserved.
LICENSE
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.