Page 1 of 1

Export source into git gave me an error. Need conversion of lf/cr to lf

Posted: Fri Mar 01, 2013 10:47 pm
by Joop Verbaken

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 {} \;


Export source into git gave me an error. Need conversion of lf/cr to lf

Posted: Sat Mar 02, 2013 3:50 am
by maxkatz

Thanks for sharing.