본문 바로가기

TOOL

[github] git user.name, user.email local 및 global 설정

728x90

1. 아래 처럼 user.name과 user.email를 확인

git config user.name
git config user.email

local은 global 보다 우선순위를 갖는다.

 

2. 따라서 특정 폴더에만 다른 깃허브 계정을 넣고 싶으면 아래와 같이 설정

git config --local user.name "설정할 이름"
git config --local user.email "설정할 이메일"