깃 기본 설정
git 상태 설정
Section titled “git 상태 설정”- 이름 설정
Terminal window git config --global user.name ${NAME} - 이메일 설정
Terminal window git config --global user.email ${EMAIL} - 설정 확인
Terminal window git config --list
git LF / CRLF 설정
Section titled “git LF / CRLF 설정”- Windows
Terminal window git config --global core.autocrlf true - Linux
Terminal window git config --global core.autocrlf input - 기능 해제
Terminal window git config --global core.autocrlf false
윈도우, 리눅스 개발자가 섞여 있을 때
Section titled “윈도우, 리눅스 개발자가 섞여 있을 때”- 모든 개발자가 LF 방식으로 통일
Terminal window git config --global core.autocrlf falsegit config --global core.eol lf