how to find crlf line separators with git?
You could use git grep via the command line to search for files containing the windows style newline characters. Using the git bash you can find all files which contain a \r character via the following command (bash only!): git grep -Il $’\r’ Or alternativly (which should work for all shell types – except windows …