gitty 0.1.5

Interactive command line interface for enhanced workflow when using the Git CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use gitty::modes;
use clap::Command;

fn main() {
    Command::new(env!("CARGO_PKG_NAME"))
        .author(env!("CARGO_PKG_AUTHORS"))
        .version(env!("CARGO_PKG_VERSION"))
        .about("Interactive command line interface for enhanced workflow when using the Git CLI")
        .get_matches();
    modes::select_command_mode();
}