Answers for "git add error warning: lf will be replaced by crlf in dist/css/style.css."

7

lf will be replaced by crlf

Linux and MacOS: use characters as in file
$ git config --global core.autocrlf input

Windows: deactivate the automatic conversion to CRLF
$ git config --global core.autocrlf false
Posted by: Guest on December-04-2020
0

warning: LF will be replaced by CRLF

git config --global core.autocrlf false
Posted by: Guest on April-04-2021

Code answers related to "git add error warning: lf will be replaced by crlf in dist/css/style.css."

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language