GIT : 기본 Editor 설정.
·
Computer/ETC
GIT : 기본 Editor 설정.git config --global core.editor 명령으로 어떤 Editor 를 사용할지 선택 가능함git config --global core.editor "vim"또는 .gitconfig에 다음 내용 추가.editor=vim많은 경우, vim이 아닌 Nano로 되어있음.관련하여 읽어보면 좋은 자료.2023.01.10 - [Computer/Linux] - [Linux] Nano Editor 간단 사용법 [Linux] Nano Editor 간단 사용법주로 vi만 사용하기 때문에 Nano는 그닥... 문제는 다른 사람 장비에서 간단한 일을 할 때, vi가 없는 경우가 있고, editor 지정을 vi로 바꾸며 원래 주인이 답답해하는 경우가 발생한다. (그렇다고 매ds..
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)로 변경...