Answers for "warning: lf will be replaced by crlf in node_modules/browser-sync-ui/static/components/header.html. the file will have its original line endings in your working directory"

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
1

warning: LF will be replaced by CRLF in

# Option 1:
git config --global core.autocrlf false

# Option 2:---> Worked for me perfectly on Linux.
git config --global core.safecrlf false
Posted by: Guest on February-21-2022

Code answers related to "warning: lf will be replaced by crlf in node_modules/browser-sync-ui/static/components/header.html. the file will have its original line endings in your working directory"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language