gitcc_git/
lib.rs

1//! Git functionalities
2//!
3//! Under the hood, this crate uses the `git2` crate. It wraps it to provide a higher-level API.
4
5mod commit;
6mod config;
7mod error;
8mod index;
9mod remote;
10mod repo;
11mod status;
12mod tag;
13mod util;
14
15pub use commit::*;
16pub use config::*;
17pub use error::*;
18pub use index::*;
19pub use remote::*;
20pub use repo::*;
21pub use status::*;
22pub use tag::*;