Skip to main content

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 diff;
11pub(crate) mod tag;
12pub(crate) mod graph;
13pub(crate) mod stash;
14pub(crate) mod status;
15pub(crate) mod submodule;
16pub(crate) mod util;
17pub(crate) mod worktree;
18
19mod backend;
20pub use backend::GitBackend;
21
22#[cfg(test)]
23mod tests;