commit
, push
로 원격 저장소에 업로드할 때마다 항상 user config
로 인해 오류가 많이 난다.
git config --global user.name "testname"
git config --global user.email "testmail@gmail.com"
위와 같이 --global
로 유저 정보를 저장해두면 어떤 저장소든 해당 계정으로 commit
된다.
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
계정이 조회된다. )