Git menggantikan lf dengan 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
Red Team