Closed vncoelho closed 8 months ago
warning: CRLF will be replaced by LF in src/ApplicationLogs/config.json.
The file will have its original line endings in your working directory
This file is with CRLF?
@vncoelho
Run the following the commands:
git config --global core.autocrlf false # You must disable able this.
git add --renormalize . # Update index with renormalized files
git status # Show the files that will be normalized
git commit -m "Introduce end-of-line normalization"
I did something similar in the PR. I will double check on Monday
This file is with CRLF?
Not sure Shargon.
If you clone the repo and type 'git status ' you will see something different.
This was introduced in last PR. Since everything I run is dockerized I am sure there is something to be fixed.
@vncoelho By default git
automatically changes the line endings to your computer's operating systems' line ending.
Default Line Endings per OS:
Windows=CRLF
Unix=LF
Linux=LF
MacOS=LF