rskit-git 0.2.0-alpha.3

Composable git repository interfaces backed by libgit2
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! 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_remote_error};
pub use repository::{Git2Repository, clone, discover, init, init_bare, open};