Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

Git replacing LF with CRLF

write git config core.autocrlf in the working dir to check the currently used value and 
if using Windows: 

   – git config --system core.autocrlf false            # per-system solution
   – git config --global core.autocrlf false            # per-user solution
   – git config --local core.autocrlf false              # per-project solution
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Git #replacing #LF #CRLF
ADD COMMENT
Topic
Name
7+2 =