하루 기록

warning: in the working copy of 'app/globals.css', LF will be replaced by CRLF the next time Git touches it 본문

Today I Learned/in dev

warning: in the working copy of 'app/globals.css', LF will be replaced by CRLF the next time Git touches it

떼굴펜 2024. 8. 31. 23:02

메세지

warning: in the working copy of 'app/globals.css', LF will be replaced by CRLF the next time Git touches it

 

→ OS 마다 줄바꿈 문자가 다른데, 뭐 쓸꺼니?

 

Windows, DOS 명령어

git config --global core.autocrlf true

 

Linux, MAC 명령어

git config --global core.autocrlf input

 

 

출처) https://dabo-dev.tistory.com/13