I have a bunch of deleted files in my working branch that I'm not sure I want to commit yet. I need to commit my modified files as needed though.
This is what I came up with:
git add `git status | grep modified | cut -f2 | cut -f4 -d' '`
This answer does something similar but isn't much better: https://stackoverflow.com/a/8277826
So is there a simpler solution?