MHgit

Travis CI build status Crates.io latest version Crates.io downloads GitHub license

MHgit is a simple git library for interracting with git repositories. Provides an idiomatic and easy way of dealing with git repos.

Requires git to be installed on the system.

Supported actions

Example

```run extern crate mhgit;

use mhgit::{CommandOptions, Repository}; use mhgit::commands::{PushOptions, RemoteOptions};

fn main() -> Result<(), Box> { let repo = Repository::at("/home/mh/awesomeness")? .init()? .add()? .commit("Initial commit")?; RemoteOptions::add() .master("master") .name("upstream") .url("https://web.com/myrepo.git") .run(&repo)?; PushOptions::new() .set_upstream(true) .remote("origin") .refspec("master") .run(&repo)?; Ok(()) } ```

Changelog