1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//! Git backend for endringer, powered by [`gix`]. //! //! Exposes [`GitBackend`], which implements //! [`endringer_core::backend::VcsBackend`]. pub(crate) mod blame; pub(crate) mod branch; pub(crate) mod commit; pub(crate) mod diff; pub(crate) mod tag; pub(crate) mod graph; pub(crate) mod status; pub(crate) mod util; mod backend; pub use backend::GitBackend; #[cfg(test)] mod tests;