Git Build Status

The library provides basic operations with Git repositories.

Documentation

Example

In Cargo.toml:

toml [dependencies] git = "0.0.4"

In main.rs:

```rust extern crate git;

fn main() { // cd foo let mut git = git::open(&Path::new("foo")).unwrap();

// git add --all
git.add_all();

// git commit -m "Well done"
git.commit("Well done");

// git push
git.push();

} ```

Acknowledgments

The library is based on libgit2 and the work of Alex Crichton.

Contributing

  1. Fork the project.
  2. Implement your idea.
  3. Create a pull request.