git add 를 하다가 다음과 같은 에러를 마주쳤다..!
warning: LF will be replaced by CRLF in 파일명
윈도우OS와 유닉스OS는 라인바꿈 문자 방식이 다르다.
윈도우OS에서는 CRLF(Carriage Return + Line Feed) 방식을, 유닉스 OS에서는 LF(Line Feed) 방식을 사용하고 있는데 해당 에러는 두 방식이 혼용되어있을 때 발생하는 whitespace 에러이다.
// global 설정 명령어
git config --global core.autocrlf true
// local 설정 명령어
git config core.autocrlf true
// global 설정 명령어
git config --global core.autocrlf input
// local 설정 명령어
git config core.autocrlf input