git add . 시 에러
warning: in the working copy of '파일경로',
LF will be replaced by CRLF the next time Git touches it
해결 방법
$git config core.autocrlf true
$git config --global core.autocrlf true
global은 시스템 전체에 적용시킬 때 사용한다.
해당 프로젝트에만 적용시키고 싶다면 --global을 제거하면 된다.
에러 이유
OS마다 사용되는 줄바꿈 문자열이 다르기 때문에 git에서 어떤 의미로 받아들여야 할지 몰라 에러 메시지가 나타난 것이라고 한다.
[참고링크] 👇
'TIL' 카테고리의 다른 글
[Git Bash Error] ! [rejected] master -> master (fetch first) git push 에러 (0) | 2024.03.19 |
---|---|
[Git] 기존 원격 저장소를 삭제하고 다시 추가하고 싶을 때 (1) | 2023.10.29 |
[Git Error] [rejected] master -> master (non-fast-forward) 해결 (0) | 2023.10.29 |
[IntelliJ Error] Commit checks failed (Windows) (1) | 2023.10.25 |
[IntelliJ Warning] Lombok requires enabled annotation processing (Windows) (0) | 2023.10.25 |