Line Break 설정 (core.eol)
- core.eol = native - 기본 OS의 설정으로 사용
- core.eol = crlf - CRLF로 사용
- core.eol = lf - LF로 사용
// 설정
git config --global core.eol native
// 조회
git config --global --list|grep core.eol
Auto CRLF 처리 (core.autocrlf)
- core.autocrlf = false - 파일 그대로 check in, check out
- core.autocrlf = true - CRLF -> LF로 변경
- core.autocrlf = input - LF로 사용
// 설정
git config --global core.autocrlf native
// 조회
git config --global --list|grep core.autocrlf
windows
저장소에서 가져올 때 LF -> CRLF로 변경하고
저장소로 보낼 때는 CRLF -> LF 로 변경하도록 true 로 설정한다.
git config --global core.autocrlf true
mac
리눅스, 맥, 유닉스는 LF 만 사용하므로 input 으로 설정한다.
git config --global core.autocrlf input
vscode 줄 바꿈 설정
settings.json 설정 파일 추가
LF:
{
"files.eol": "\n",
}
CRLF:
{
"files.eol": "\r\n",
}
'Git' 카테고리의 다른 글
git 삭제된 파일 복구하는 방법 (0) | 2022.08.24 |
---|---|
git pull 에러 발생 시 해결방법 (0) | 2022.07.31 |
소스트리 Sourcetree 로그인 키체인 암호를 계속 요구할때 (0) | 2022.06.26 |
git fatal remote error CAPTCHA required (1) | 2022.06.26 |
git 특정 폴더만 받기 Clone 하기 (0) | 2022.06.21 |
개의 댓글