is it possible to `git status` only modified files?

git, git-status, ubuntu

Solution

You can't do this with `git status`, but you could use `git ls-files -m` to show all modified files.

Problem

Is it possible to have `git status` only show the modified files due, in my case, to having too many staged files?

Original source

Related problems