Trait repos::vcs::Vcs

source ·
pub trait Vcs {
    fn clone(&self, url: &str, path: &Path, bare: bool, proxy: Option<&Proxy>);
    fn update(&self, path: &Path, bare: bool, proxy: Option<&Proxy>);
}

Required Methods§

Clone a new repository to path.

Update an existed repository in path.

Implementors§