본문 바로가기
etc./Git

Git Global Configuration

by 삼SAM 2022. 7. 5.

Local PC에서 기본값으로 사용할 Git 사용자 이름과 E-mail 설정

Global Username & Email

git config --global user.name <username>
git config --global user.email <email>

 

CRLF 줄바꿈 문자 설정

Line ending (줄바꿈 문자)

- Windows : CR (\r) + LF (\n)

- Unix or Mac : LF (\n)

 

Windows 사용자와 Mac 사용자가 같은 Git Repository 를 작업할 때 코드에서 변경된 내용이 없어도 CRLF 차이로 인해 commit 이 발생할 수 있으므로 설정을 통해 통일해서 사용할 필요가 있음.

 

CRLF - Windows

Windows 환경으로 가져올 때는 LF 를 CRLF 로 변경하고 Github 서버로 업로드할 때는 CRLF 를 LF 로 변경

git config --global core.autocrlf true

 

CRLF - Mac

Mac 환경에서는 LF 만 사용

git config --global core.autocrlf input

 

 

Editor

default editor 설정

git config --global core.editor <editor>

 

설정 확인

전체 설정 확인

git config --list

 

항목별 설정 확인

git config <key>

'etc. > Git' 카테고리의 다른 글

Remote Repository 에 변경 내용 Push 하기  (0) 2022.07.09
Remote Repository 생성 및 Local 연동  (0) 2022.07.09
Local Repository 생성 및 파일 commit  (0) 2022.07.06

댓글