💚 해결
첫 번째 방법)
*.* text eol=lf
루트 디렉토리에 .gitattributes 파일을 생성하고 위와 같이 적었다.
모든 파일을 LF로 설정했다.
*.java text eol=lf와 같이 특정 파일만 LF로 설정할 수도 있다.
두 번째 방법)
git config core.autocrlf true
윈도우는 LF가 CRLF로 변환될 것이다.
이렇게 해도 CRLF ➡️ LF로 변환되기도 해서 비추
반응형
'git' 카테고리의 다른 글
[Git] fatal: refusing to merge unrelated histories (0) | 2023.01.06 |
---|---|
HEAD detached (0) | 2022.02.06 |
[Error] fatal: Unable to create '/.git/index.lock': No such file or directory (0) | 2021.07.12 |
깃헙 프로필 뱃지 (0) | 2021.06.27 |
[Error] error: The following untracked working tree files would be overwritten by checkout:.idea/vcs.xml (0) | 2021.06.17 |