1//! Override `git` subcommand functionality at the user scope.
23#[macro_use]
4mod errmsg;
56mod cli;
7mod run;
8mod scanpath;
9mod upstream;
1011pub use self::cli::Options;
12pub use self::run::run;
13pub use self::scanpath::scan_path;
14pub use self::upstream::find_upstream_git;