//! Backends that read Git metadata from the local repository.
//!
//! Two interchangeable implementations of `GitFetcher` expose the same API ([`get_branch`],
//! [`get_log`] and [`get_remotes`]): one shelling out to the `git` command (default) and one using
//! [`git2`](https://docs.rs/git2) in-process (the `libgit` feature). Exactly one is compiled in
//! depending on the feature flag.
//!
//! [`get_branch`]: cmdgit::GitFetcher::get_branch
//! [`get_log`]: cmdgit::GitFetcher::get_log
//! [`get_remotes`]: cmdgit::GitFetcher::get_remotes
pub use LogInfos;
pub use GitFetcher;
pub use GitFetcher;