r_git 1.0.1

A git implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod author;
mod blob;
mod commit;
mod database;
mod storable;
mod tree;

pub use self::author::Author;
pub use self::blob::Blob;
pub use self::commit::Commit;
pub use self::database::{Content, Database, FileMode};
pub use self::storable::Storable;

pub use self::tree::{FlatTree, Tree};