rskit-git 0.2.0-alpha.4

Composable git repository interfaces backed by libgit2
Documentation
//! Embedded libgit2 repository implementation.

pub mod auth;
mod conversions;
mod errors;
mod manage;
mod read;
mod repository;
#[cfg(test)]
mod tests;
mod write;

pub(crate) use conversions::{
    commit_from_git2, oid_from_git2, reference_from_git2, signature_from_git2,
};
pub(crate) use errors::{
    map_head_error, map_push_error, map_remote_error, map_signature_error, redact_url_credentials,
};
pub use repository::{
    Git2Repository, clone, discover, discover_with_auth, init, init_bare, init_with, open,
    open_with_auth,
};