A crate to browse a git repository in a way that most people are used to. Heavily inspired by how people browse a git repository on github and gitlab.
```rust
let repo = Repo::open(".")?;
let branches = repo.list_branches()?; println!("Found the following branches:"); for branch in &branches { println!(" - {}", branch); }
let branch = repo.browsebranch(branches.first().unwrap())?; for file in branch.listfiles() { println!("Found file: {:?}", file.path()); println!("File's content is length {}", file.readcontentstring()?.len());
println!("File is modified in the following commits:");
for commit in file.history()? {
if let Ok(commit) = commit {
println!(" {}: {}", commit.id(), commit.message());
}
}
}
```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.