warning: LF will be replaced by CRLF
2021. 5. 20. 02:34ㆍGit
반응형
인텔리제이 terminal 환경에서 git add . 명령어를 실행하였더니 아래와 같은 오류가 발생하였다.
kimmj@LAPTOP-7RAGST0V MINGW64 ~/OneDrive/문서/GitHub/RecipeServer (main)
$ git add .
warning: LF will be replaced by CRLF in build/tmp/compileJava/source-classes-mapping.txt.
The file will have its original line endings in your working directory
해결 방법
git config --global core.autocrlf true
위처럼 하면 해결이 되긴 하는데 레퍼런스 찾아볼때 true 자리에 false가 있는 자료도 많았다.
왜 그런지 이유는 자세히 살펴보지 않았지만 그렇다는 의견도 남겨본다.
true인 경우)
https://blog.shovelman.dev/923
https://wotres.tistory.com/entry/git-warning-LF-will-be-replaced-by-CRLF-in-READMEmd
false인 경우)
https://stackoverflow.com/questions/24763948/git-warning-lf-will-be-replaced-by-crlf
https://bnzn2426.tistory.com/33
반응형
'Git' 카테고리의 다른 글
git commit 취소 (0) | 2021.03.30 |
---|---|
git log 정지, 탈출 방법 (0) | 2021.03.30 |
Pull is not possible because you have unmerged files (0) | 2021.03.23 |
Please commit your changes or stash them before you merge (0) | 2021.03.17 |
깃허브 커밋기록 안될때 (0) | 2021.03.08 |