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
'Dev > Git' 카테고리의 다른 글
Git 에러 해결 | Large File Storage 해결 - lfs install (0) | 2021.06.04 |
---|---|
Git config 설정 | user.name & user.email 설정 및 삭제 (0) | 2021.02.24 |
Git 에러 해결 | Large files detected (2) | 2020.11.25 |
Gitlab 에서 Github 으로 저장소 옮기기 (미러링) (1) | 2020.06.19 |