mhgit 0.1.0

MHgit is a simple git library for interracting with git repositories.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate mhgit;

// use mhgit::{commands::CloneOptions, Repository};

#[test]
fn test_mhgit() {

    // let _repo = Repository::new();

    // let _ = Repository::at("/home/m/testgit");
    // let status = repo.status().expect("failed to get git status");
    // println!(">>>> Status\n{:?}", status);
}