gitnu 0.6.5

gitnu indexes your git status so you can use numbers instead of filenames.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::env::{args, current_dir};
use std::process::ExitCode;

fn main() -> ExitCode {
    let cwd = current_dir().unwrap_or_default();
    let mut app = gitnu::parse(cwd, args());
    match app.run() {
        Ok(()) => ExitCode::SUCCESS,
        Err(e) => ExitCode::from(e.code()),
    }
}