Git

[Opensource_git] 02. 깃 환경설정

I-one 2022. 2. 17. 15:41

[원문링크]

https://adorable-aspen-d23.notion.site/OpenSrc_Git_02_-f597b1c8b23444e7bae7296bce193fb3

 

OpenSrc_Git_02_깃 환경설정

깃 환경설정

adorable-aspen-d23.notion.site

[2021 - 1학기 수강한 오픈소스SW입문 강의 정리본입니다.]

 

깃 환경설정

// 1.명령어 여러 개 묶어서 사용하기
git tag; git branch

// 2.환경설정
git config 설정값 //설정
git config --unset 이메일주소 //삭제

EX)
git config user.name "Jionee" //로컬
git config --global user.name "Jionee" //글로벌

--> .git/config 파일에 저장됨 (로컬일때만, 글로벌은 파일생성X)