git add 명령어를 실행할때 이런 error를 본 적이 있을 것이다.
linux 개발자와 windows 개발자가 Git으로 협업을 할때 발생할 수 있는 문제라고 합니다.
windows 사용자의 경우에는 아래의 명령어를 실행해주면 된다.
git config --global core.autocrlf true
linux 사용자의 경우에는 뒤에 input이라는 명령어를 추가해줌으로써 단방향으로만 변환이 이루어지도록 설정해줘야한다고 합니다.
git config --global core.autocrlf true input
Ref
'Git' 카테고리의 다른 글
Trouble Shooting - The following untracked working tree files would be overwritten by ... (0) | 2021.10.12 |
---|---|
Trouble Shooting - Git push error(fatal:refusing to merge unrelated histories) (0) | 2021.07.20 |
git amend, reset (0) | 2021.06.25 |
Git 사용하기 (0) | 2021.06.24 |
Git 시작하기 (0) | 2021.06.23 |