com
git 이름 이메일 전역 설정과 레포지토리 별 개별 설정
by Kitle · 2020. 07. 24.
git 을 사용하다 보면 개인, 회사 프로젝트에 실수로 개인 e-mail로 커밋한다던지, 반대로 되는 경우가 종종 발생한다. 이를 방지하고자 개별 설정을 통해 실수를 미리 차단해 두자.
1. git repository 디렉토리로 이동
2. 현재 설정된 이름과 이메일주소 확인하기
git config user.name
git config user.email
git config user.name
git config user.email
또는
git config --list 진입 후
user.name= user.email= 부분 확인
3. 전역 설정하기
git config —global user.name USERNAME
git config —global user.email USER@EMAIL.COM
4. 레포지토리별 개별 설정하기
예 A , B 두개릐 레포지토리가 있을때
4-1) A 레포지토리로 이동 후
git config user.name A_NAME
git config user.email A_Email
4-2) B레포지토리로 이동 후
git config user.name B_NAME
git config user.email B_Email
이렇게 하면 레포지토리별로 다르게 사용 할 수 있다.