I'm trying to figure out how to easily count the files in my uncommitted index.
I've tried:
git status | grep '#' | wc -l
but there are a few lines that start with #
that don't represent changed files. Anyone got anything better? Figured there had to be a flag for git status
to do this.
Even tools like GitX don't easily allow you to select the staged files/directories and see how many of them there are.