gitnu adds numbers to git status.
gitnu can be installed by running cargo install gitnu
.
```bash $ git nu status
#
```
Note the similarity of the output git nu status
to that of git status
.
They are identical except for the numbers in front of filenames.
After gitnu status
, you can now use numbers in place of filenames for git
commands:
```bash $ git nu add 2 $ git nu status
#
```
In general, whenever you used to do
git <command> [filenames and arguments]
You can now use
git nu <command> [file numbers and arguments]
gitnu will silently replace numbers with their filenames and pass everything else intact into git.
gitnu accepts multiple arguments and even number ranges:
bash
$ git nu add 2 5-7 # same as `git nu add 2 5 6 7`
You can even mix file names with numbers.