Can I make git diff ignore permission changes
This will tell git to ignore permissions:
git config core.filemode false
Use the -G<regex>
option ("Look for differences whose patch text contains added/removed lines that match <regex>
.") searching for any changes at all - i.e. .
. Permissions-only changes don't match this, so they are ignored.
So: git diff -G.