[][src]Struct reef::Git

pub struct Git;

Git functionality

Implementations

impl Git[src]

pub fn clone(origin: &str, path: &Path) -> Result<PathBuf>[src]

clone a remote git repository to a local Path

pub fn branch(path: &Path) -> Result<String>[src]

reports the current branch

pub fn commit_id(path: &Path) -> Option<String>[src]

reports the latest commit_id

pub fn tags(path: &Path) -> Result<Vec<String>>[src]

retrieve a list of tag names

pub fn origin_from_path(path: &Path) -> Option<String>[src]

pub fn get_origin_remote(path: &Path) -> Result<String>[src]

pub fn cache_path(origin: &str) -> Result<PathBuf>[src]

pub fn cache_origin(origin: &str) -> Result<String>[src]

pub fn cache(origin: &str) -> Result<String>[src]

make sure the origin has been cloned to a local cache, returns the origin of the local cache

pub fn update_cache(origin: &str) -> Result<String>[src]

pub fn commit_ids(
    origin: &str,
    branch: &str,
    limit: usize
) -> Result<Vec<String>>
[src]

pub fn latest_commit_id(origin: &str, branch: &str) -> Result<String>[src]

pub fn commit_path(origin: &str, commit_id: &str) -> Result<PathBuf>[src]

setup a path with the state of a git repository at a specific commit

Auto Trait Implementations

impl RefUnwindSafe for Git

impl Send for Git

impl Sync for Git

impl Unpin for Git

impl UnwindSafe for Git

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,