git-clean 0.8.0

A tool for cleaning old git branches.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![deny(warnings)]

extern crate git_clean;

use git_clean::*;

fn main() {
    let matches = cli::build_cli().get_matches();

    run(&matches).unwrap_or_else(|e| print_and_exit(&e));
}