본문 바로가기

Git 가입 및 global configuration 설정 본문

BF 2024/Git

Git 가입 및 global configuration 설정

jaegomhoji 2022. 3. 29. 17:21

** GitHub 가입 ( 서버로 사용할 것 )

 

** 계정 생성 후 이메일 코드 확인 , 로그인 페이지

 

** Global Username & Email 설정 

> 설정을 한번 해주면, 매번 push & pull 과정에서 자동으로 적용된다 

--git config --global user.name name쓰기 

--git config --global user.name email쓰기 

 

** CRLF 설정 : 줄바꿈 문자 설정 

> windows : CR (\r) + LF (\n) 

> Unix 계열 , Mac : LF (\n) 

> Windows 사용자와 Mac 사용자가 같은 GIt repository 를 작업할 때 ,

코드에서 변경된 내용이 없어도 CRLF 차이로 commit 발생하여 대혼란이 발생할 수 있다....ㅜㅜ

 

-> windows 사용자는 가져올때는 LF 를 CRLF로 변경하고, 보낼때는 CRLF를 LF로 변경

git config --global core.autocrlf true  옵션을 지정하면 간편하게 자동적용됨

 

-> Mac 사용자는 LF를 사용, default 설정을 사용하면 된다 

git config --global core.autocrlf input  

 

** 기본 Editor 설정 

> vscode로 설정한 예시 

git config --global core.editor editor_name 

 

** 전체 설정 확인 

git config --list

** 항목별 설정 확인 

git config 항목

'BF 2024 > Git' 카테고리의 다른 글

Remote Repository 생성  (0) 2022.03.29
Local Repository  (0) 2022.03.29
Git 기본용어들  (0) 2022.03.29
Git 설치하기 ( Mac / m1 )  (0) 2022.03.29
VCS와 Git 이란?  (0) 2022.03.29
Comments