1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Override `git` subcommand functionality at the user scope.

#[macro_use]
mod errmsg;

mod cli;
mod run;
mod scanpath;
mod upstream;

pub use self::cli::Options;
pub use self::run::run;
pub use self::scanpath::scan_path;
pub use self::upstream::find_upstream_git;