Dev/Git

Git 에러 해결 | LF will be replaced by CRLF in

sooya14 2020. 4. 3. 23:57

 

git add 명령어를 입력하니깐

에러 발생 ㅠㅠ 

$ git add .
warning: LF will be replaced by CRLF in 
The file will have its original line endings in your working directory

 

원인은, 

플랫폼마다 줄바꿈을 바라보는 문자열이 다른데 Git 이 어느쪽으로 선택해서 관리를 해줄지 물어보는 것이라고 합니다 

 

(근데 난 윈도우만 사용했는데 왜그러는걸까요?...)

 

 

| 해결방안 

 

Windows, DOS 명령어 

git config --global core.autocrlf true

 

 

Linux, MAC 명령어 

git config --global core.autocrlf input