mrh 0.10.15

Crawls filesystem and displays pending status of each git repo found
Documentation
1
2
3
4
5
6
7
fn main() {
    mrh::Crawler::new(".")
        .pending(true)
        .ignore_untracked(true)
        .ignore_uncommitted_repos(true)
        .for_each(|output| println!("{:?}", output));
}