gitnu 0.7.2

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

fn main() -> ExitCode {
    let current_dir = current_dir().unwrap_or_default();
    let args = args();
    gitnu::run(current_dir, args)
}