깃 환경설정

// 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)