Probably an easier way to do this, but I think the following works:
If the last revision before the changes was fa1afe1, you can find all the files that were changed in app/views, using:
git diff --name-only fa1afe1 -- app/views
In addition, you can see all the files that git tracks in app/viewswith:
git ls-files app/views
, , comm -3 bash:
comm -3 <(git diff --name-only fa1afe1 -- app/views|sort) <(git ls-files app/views|sort)
(, , comm, , , /bin/sh, .)
, fa1afe1, git ls-files. , , , , , . , git log --name-only git diff.