1 2 3 4 5 6 7 8 9
//! 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 utils;