git-clone-canonical 0.1.5

Clone git repositories into a local path derived from the URL.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod app;
mod basedir;
mod clone;
mod error;
pub mod git;
mod log;
mod options;
mod repopath;
mod url;

pub use self::app::run;
pub use self::basedir::BaseDir;
pub use self::clone::clone;
pub use self::error::{Error, Result};
pub use self::log::log_init;
pub use self::options::Options;
pub use self::repopath::get_repo_path;
pub use self::url::Url;