I've started maintaining a large, unwieldy, repo with a lot of outdated code that could be deprecated or removed. So, I want to find files that have not been changed since a specific commit so that I can go through and check if they're still necessary.
I can find files in my repo that have changed since a specific commit via:
git diff --name-only SHA
But how do I find files that have not been changed?