Is it possible to have git status only show the modified files due, in my case, to having too many staged files?
git status
You can't do this with git status, but you could use git ls-files -m to show all modified files.
git ls-files -m