One of the commands I find incredibly useful in Git is git add -u to throw everything but untracked files into the index. Is there an inverse of that? In the la
git add -u
git ls-files -o --exclude-standard gives untracked files, so you can do something like below ( or add an alias to it):
git ls-files -o --exclude-standard
git add $(git ls-files -o --exclude-standard)