I would like to see a list of files modified since the last commit, as git status shows, but I care only about files located in a single directory. Is there a w
git status
From within the directory:
git status .
You can use any path really, use this syntax:
For instance for directory with path "my/cool/path/here"
git status my/cool/path/here