I just ran a
git add -A
on my first git project.
I got back about a thousand responses:
"warning: LF will be replaced by CRLF"
as it went through each file (Ruby files, some are gems).
I deleted my .git directory and tried to disable this default setting by typing this command:
git config core.autocrlf false
Then I tried to add the files again:
git add -A
But I got the same result. Help!