endringer_git/lib.rs
1//! Git backend for endringer, powered by [`gix`].
2//!
3//! Exposes [`GitBackend`], which implements
4//! [`endringer_core::backend::VcsBackend`].
5
6pub(crate) mod blame;
7pub(crate) mod object;
8pub(crate) mod branch;
9pub(crate) mod commit;
10pub(crate) mod conflict;
11pub(crate) mod diff;
12pub(crate) mod tag;
13pub(crate) mod graph;
14pub(crate) mod info;
15pub(crate) mod operation;
16pub(crate) mod stash;
17pub(crate) mod status;
18pub(crate) mod submodule;
19pub(crate) mod util;
20pub(crate) mod worktree;
21
22mod backend;
23pub use backend::GitBackend;
24
25#[cfg(test)]
26mod tests;