Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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
Comment

warning: LF will be replaced by CRLF

git config --global core.autocrlf false
Comment

LF will be replaced by CRLF in assets

git config core.autocrlf true
Comment

warning: LF will be replaced by CRLF in [file_path]

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

For Windows: disable the automatic changing to CRLF
	git config --global core.autocrlf false
Comment

fatal: LF would be replaced by CRLF in package.json

$ git config --global core.autocrlf false
$ git config --global core.safecrlf false
Comment

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
Comment

git warning lf will be replaced by crlf

All the answers here are good but you might just have a file open that you're trying to push
Comment

PREVIOUS NEXT
Code Example
Shell :: create ssh key 
Shell :: copy data to kubernetes pod 
Shell :: android get armeabi 
Shell :: how to get all avd names in cmd 
Shell :: install robot framework 
Shell :: arch linux sort packages by size 
Shell :: pull master into branch 
Shell :: android studio tortoise git 
Shell :: How to install vscode on centos 8 
Shell :: cronjob in termux 
Shell :: sudo update-alternatives — install 
Shell :: opera libffmpeg.so 
Shell :: git tag from commit 
Shell :: install scrapy 
Shell :: inicializar as credenciais no git 
Shell :: git tag sort versions 
Shell :: unity progrids git url 
Shell :: powershell open current path in explorer 
Shell :: the ycmd server install 
Shell :: install git bash in ubuntu 
Shell :: python code to find os version of Webserver 
Shell :: rm rf except one directory 
Shell :: install kafkacat 
Shell :: powershell qr code generator 
Shell :: clone a repository 
Shell :: puppet install on centos 7 
Shell :: win kex kali linux 
Shell :: ubuntu open with software install not working 
Shell :: CMake: unsupported GNU version -- gcc versions later than 8 are not supported 
Shell :: conda create new environment in specified location 
ADD CONTENT
Topic
Content
Source link
Name
9+5 =