<!--If you are working on a Unix based system like Ubuntu/Mac, then this error is because you have incorrect line endings.
Set your line endings correctly, and have git manage how it handles them:-->
git config --global core.autocrlf input
<!--In your work directory convert all of the files by running:-->
find ./ -type f -exec dos2unix {} ;