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 :: gitlab ci echo variable 
Shell :: installing helm on linux 
Shell :: permissions in linux 
Shell :: redis dockerhub 
Shell :: Set Up Your Username and Email in Git Command 
Shell :: ls command in terminal 
Shell :: what does %! mean vim 
Shell :: installing nginx on docker container 
Shell :: install pydotplus - tox by pip ubuntu 
Shell :: poetry create requirements.txt python 
Shell :: connect to wifi with wpa supplicant raspberry pi 
Shell :: linux shutdown no password 
Shell :: linkerd kubernetes 
Shell :: how to save a specific file in stash 
Shell :: Correct Folder Permissions Ubuntu 18.04 Server 
Shell :: install stegsnow ubuntu 
Shell :: start networking ubuntu recovery 
Shell :: git reset deinit and update submodule and re clone all submodules 
Shell :: macos redirect to file with colors 
Shell :: osx remove env 
Shell :: odoo 13 install 
Shell :: deploy contract on bsc testnet hardhat 
Shell :: installing flow globally 
Shell :: bash rifare ultimo comando 
Shell :: how to use migrate guru plugin 
Shell :: iiana github 
Shell :: como buscar archivos ejecutables linux comandos 
Shell :: axel download google drive 
Shell :: atalho teclado command prompt 
Shell :: bash linux no ouput from command 
ADD CONTENT
Topic
Content
Source link
Name
9+8 =