# p5-Git-Raw **Repository Path**: ijz/p5-Git-Raw ## Basic Information - **Project Name**: p5-Git-Raw - **Description**: Git::Raw -是perl ibgit2库的接口。 ibgit2 纯c的高效的git库。 - **Primary Language**: Perl - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-12-29 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README package Git::Raw; 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::Packbuilder; use Git::Raw::Blob; use Git::Raw::Commit; use Git::Raw::Index; use Git::Raw::Indexer; use Git::Raw::Odb; use Git::Raw::Mempack; use Git::Raw::Reference; use Git::Raw::Repository; use Git::Raw::Stash; use Git::Raw::Stash::Progress; use Git::Raw::Tree; use Git::Raw::TransferProgress; =for HTML Build Status: Travis Build Status: AppVeyor Coverage Status =cut =head1 NAME Git::Raw - Perl bindings to the Git linkable library (libgit2) =head1 DESCRIPTION L 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: 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 AUTHOR Alessandro Ghedini Jacques Germishuys =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. =cut 1; # End of Git::Raw