1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//! Git functionalities
//!
//! Under the hood, this crate uses the `git2` crate. It wraps it to provide a higher-level API.

mod commit;
mod config;
mod error;
mod remote;
mod repo;
mod status;
mod tag;
mod util;

pub use commit::*;
pub use config::*;
pub use error::*;
pub use remote::*;
pub use repo::*;
pub use status::*;
pub use tag::*;