[GitHub] 저장소마다 다른 User 사용하기

Jiwon Youn·2021년 3월 27일
0

commit, push로 원격 저장소에 업로드할 때마다 항상 user config로 인해 오류가 많이 난다.


global (default)

git config --global user.name "testname"
git config --global user.email "testmail@gmail.com"

위와 같이 --global로 유저 정보를 저장해두면 어떤 저장소든 해당 계정으로 commit된다.


local

git config --local user.name "testname"
git conifg --local user.email "testmail@gmail.com"

다른 계정을 사용해 커밋하고 싶다면 원하는 로컬 저장소로 가서 --local 옵션으로 계정을 설정한다.
--local 옵션이 --global보다 계정 설정 우선 순위를 가진다.


설정 확인은 해당 로컬 저장소에서 git config --local --list로 한다.
( git config --list로 확인할 시 global 계정이 조회된다. )

0개의 댓글