Regarding the 'git' and LF/CR problem.
Here is a good solution
brew install dos2unix
// use command to convert all dos lf/cr to lf:
find . -type f -exec dos2unix {} \;
Regarding the 'git' and LF/CR problem.
Here is a good solution
brew install dos2unix
// use command to convert all dos lf/cr to lf:
find . -type f -exec dos2unix {} \;
Thanks for sharing.