[Git] 프로젝트/저장소 별 계정 정보 설정

git을 설치 후 최초에 global 계정 설정을 한다.

git config --global user.name "username"
git config --global user.email "[email protected]"

global 설정이므로 모든 git 프로젝트/저장소에 해당 계정 정보가 반영되는데,
특정 프로젝트에서 다른 계정을 사용하고 싶다면 해당 저장소에서 local 설정을 하면된다.

git config --local user.name "localuser"
git config --local user.email "[email protected]"

각 설정 정보를 확인하려면 아래 명령어를 입력하면 된다.

  • global
git config --list
  • local
git config --local --list

좋은 웹페이지 즐겨찾기