[][src]Trait remotemob::git::Git

pub trait Git {
    fn run(&self, args: &[&str]) -> Result<()>;
fn tree_is_clean(&self) -> Result<bool>;
fn has_branch(&self, branch: &str) -> Result<bool>;
fn on_branch(&self, branch: &str) -> Result<bool>; }

Required methods

fn run(&self, args: &[&str]) -> Result<()>

fn tree_is_clean(&self) -> Result<bool>

fn has_branch(&self, branch: &str) -> Result<bool>

fn on_branch(&self, branch: &str) -> Result<bool>

Loading content...

Implementors

impl<'repo> Git for GitCommand<'repo>[src]

Loading content...