The library provides basic operations with Git repositories.
In Cargo.toml
:
toml
[dependencies]
git = "0.0.14"
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();
} ```
The library is based on libgit2 and the work of Alex Crichton.