gitkit-cli 0.1.0

Get insightful metrics on your git repository
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use clap::Parser;
use gitkit_cli::GKitArgs;
use std::process;

fn main() {
    let args = GKitArgs::parse();

    match gitkit_cli::run(args) {
        Ok(_) => process::exit(1),
        Err(err) => eprintln!("Process failed with: {}", err),
    }
}