1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! Extensions for git2
//!
//! Goals:
//! - Provide "good enough" implementations of essential or higher-level git2 logic, like cherry-pick, squash, hooks, authentication (not implemented yet), etc
//! - The above serves as examples for people needing to write their own implementations
pub mod hooks;
pub mod ops;
pub mod tree;
pub mod utils;
pub(crate) mod bytes;
#[cfg(test)]
mod testing;