git_override/
lib.rs

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