gitubuntugit-status

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


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


Solution

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