Issue
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.
Answered By - Lily Ballard Answer Checked By - Marie Seifert (WPSolving Admin)