I have a repository with a lot of autogenerated source files I\'ve marked as \"binary\" in .gitattributes (they are checked in because not everyone has access t
.gitattributes
A clever hack to achieve this: listing all non-binary files that contains carriage returns
$ git grep --cached -I -l -e $'\r'
For my case, an empty string works better:
$ git grep --cached -I -l -e $''
Took it from git list binary and/or non-binary files?.