Search This Blog

Git: disable autocrlf end-of-line conversion

When adding files to git, git add --all, you may get the error:
fatal: CRLF would be replaced by LF in ... ... 



You can turn off the autocrlf to fix this:
git config --global core.autocrlf false



see also

No comments:

Post a Comment