gitnu 0.1.1

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
#!/usr/bin/env sh

export RUST_LOG=debug
GITNU=./target/debug/gitnu

cargo build || exit 1
if [ -z $1 ]; then
  $GITNU status
else
  $GITNU $@
fi