git-state 0.1.0

Probe git repository state
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::env;

use git_state;

fn main() {
    let path = match env::current_dir() {
        Ok(path) => path,
        Err(_) => env::args()
            .skip(1)
            .next()
            .expect("could not determine git directory")
            .into(),
    };

    println!("{}", git_state::git_state(&path).unwrap());
}