Git: autocrlf 설정: 개행문자
·
Computer/ETC
Git: autocrlf 설정: 개행문자(new line)core.autocrlf : git에서 파일을 git repository 에 업로드할 때 개행문자(new line)를 처리하는 option.core.autocrlf : newline관련 설정.core.autocrlf 는 다음과 같은 세가지 mode를 지원.core.autocrlf = false (default)파일 내용을 그대로 반영.core.autocrlf = truegit repository에 업로드 할 때, 모든 개행문자를 LF(line feed, linux와 mac에서의 new line)로 변경.단, local로 체크아웃할 때는 LF를 CRLF(carriage return + line feed, windows에서의 new line)로 변경...