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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
|
package Git::Raw;
$Git::Raw::VERSION = '0.87';
use strict;
use warnings;
require XSLoader;
XSLoader::load('Git::Raw', $Git::Raw::VERSION);
use Git::Raw::Error;
use Git::Raw::Error::Category;
use Git::Raw::AnnotatedCommit;
use Git::Raw::Packbuilder;
use Git::Raw::Blob;
use Git::Raw::Commit;
use Git::Raw::Index;
use Git::Raw::Indexer;
use Git::Raw::Object;
use Git::Raw::Odb;
use Git::Raw::Odb::Object;
use Git::Raw::Mempack;
use Git::Raw::Rebase;
use Git::Raw::RefSpec;
use Git::Raw::Reference;
use Git::Raw::Repository;
use Git::Raw::Stash;
use Git::Raw::Stash::Progress;
use Git::Raw::Submodule;
use Git::Raw::Tree;
use Git::Raw::TransferProgress;
use Git::Raw::Worktree;
1;
__END__
=for HTML
<a href="https://dev.azure.com/jacquesgermishuys/p5-Git-Raw/_build">
<img src="https://dev.azure.com/jacquesgermishuys/p5-Git-Raw/_apis/build/status/jacquesg.p5-Git-Raw?branchName=master" alt="Build Status: Azure Pipeline" align="right" />
</a>
<a href="https://ci.appveyor.com/project/jacquesg/p5-git-raw">
<img src="https://ci.appveyor.com/api/projects/status/il9rm9fsf9dj1dcu/branch/master?svg=true" alt="Build Status: AppVeyor" align="right" />
</a>
<a href="https://coveralls.io/r/jacquesg/p5-Git-Raw">
<img src="https://coveralls.io/repos/jacquesg/p5-Git-Raw/badge.png?branch=master" alt="coveralls" align="right" />
</a>
=cut
=head1 NAME
Git::Raw - Perl bindings to the Git linkable library (libgit2)
=head1 VERSION
version 0.87
=head1 DESCRIPTION
L<libgit2|http://libgit2.github.com> is a pure C implementation of the Git core
methods provided as a re-entrant linkable library designed to be fast and
portable with a solid API. This module provides Perl bindings to the libgit2
API.
B<WARNING>: The API of this module is unstable and may change without warning
(any change will be appropriately documented in the changelog).
=head1 METHODS
=head2 features( )
List of (optional) compiled in features. Git::Raw may be built with support
for threads, HTTPS and SSH.
=head2 message_prettify( $msg, [$strip_comments, $comment_char] )
Clean up C<$msg> from excess whitespace and ensure that the last line ends with
a newline. The default is to strip all comments, starting with a C<#>, unless
otherwise specified.
=head1 DOCUMENTATION
=head2 L<Git::Raw::AnnotatedCommit>
=head2 L<Git::Raw::Blame>
=head2 L<Git::Raw::Blame::Hunk>
=head2 L<Git::Raw::Blob>
=head2 L<Git::Raw::Branch>
=head2 L<Git::Raw::Cert>
=head2 L<Git::Raw::Cert::HostKey>
=head2 L<Git::Raw::Cert::X509>
=head2 L<Git::Raw::Commit>
=head2 L<Git::Raw::Config>
=head2 L<Git::Raw::Cred>
=head2 L<Git::Raw::Diff>
=head2 L<Git::Raw::Diff::Delta>
=head2 L<Git::Raw::Diff::File>
=head2 L<Git::Raw::Diff::Hunk>
=head2 L<Git::Raw::Diff::Stats>
=head2 L<Git::Raw::Error>
=head2 L<Git::Raw::Error::Category>
=head2 L<Git::Raw::Filter>
=head2 L<Git::Raw::Filter::List>
=head2 L<Git::Raw::Filter::Source>
=head2 L<Git::Raw::Graph>
=head2 L<Git::Raw::Index>
=head2 L<Git::Raw::Index::Conflict>
=head2 L<Git::Raw::Index::Entry>
=head2 L<Git::Raw::Indexer>
=head2 L<Git::Raw::Mempack>
=head2 L<Git::Raw::Merge::File::Result>
=head2 L<Git::Raw::Note>
=head2 L<Git::Raw::Object>
=head2 L<Git::Raw::Odb>
=head2 L<Git::Raw::Odb::Backend>
=head2 L<Git::Raw::Odb::Backend::Loose>
=head2 L<Git::Raw::Odb::Backend::OnePack>
=head2 L<Git::Raw::Odb::Backend::Pack>
=head2 L<Git::Raw::Odb::Object>
=head2 L<Git::Raw::Packbuilder>
=head2 L<Git::Raw::Patch>
=head2 L<Git::Raw::PathSpec>
=head2 L<Git::Raw::PathSpec::MatchList>
=head2 L<Git::Raw::Rebase>
=head2 L<Git::Raw::Rebase::Operation>
=head2 L<Git::Raw::RefSpec>
=head2 L<Git::Raw::Reference>
=head2 L<Git::Raw::Reflog>
=head2 L<Git::Raw::Reflog::Entry>
=head2 L<Git::Raw::Remote>
=head2 L<Git::Raw::Repository>
=head2 L<Git::Raw::Signature>
=head2 L<Git::Raw::Submodule>
=head2 L<Git::Raw::Stash>
=head2 L<Git::Raw::Stash::Progress>
=head2 L<Git::Raw::Tag>
=head2 L<Git::Raw::TransferProgress>
=head2 L<Git::Raw::Tree>
=head2 L<Git::Raw::Tree::Builder>
=head2 L<Git::Raw::Tree::Entry>
=head2 L<Git::Raw::Walker>
=head2 L<Git::Raw::Worktree>
=head1 AUTHOR
Alessandro Ghedini <alexbio@cpan.org>
Jacques Germishuys <jacquesg@striata.com>
=head1 LICENSE AND COPYRIGHT
Copyright 2012 Alessandro Ghedini.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.
|