전체 repository 에 name, email 설정
- 터미널 열기
- git config –global user.name “NAME”
- git config –global user.email “EMAIL@example.com”
- git config –list 로 확인
repository 별 name, email 설정
- 터미널 열기
- git config user.name “NAME”
- git config –local user.name “NAME” 과 같음
- git config user.email “EMAIL@example.com”
- cat .git/config 로 확인