gitnu 0.0.5

gitnu indexes your git status so you can use numbers instead of filenames.
Documentation
1
2
3
4
5
6
use std::collections::LinkedList;
use std::process::Command;

pub fn bypass(args: LinkedList<String>) {
    Command::new("git").args(args).spawn().unwrap().wait().unwrap();
}