Git - 계정 설정


글로벌 계정정보 확인

git config --global user.name


git config --global user.email


해당 Repository 계정정보 확인 (해당 Repository에 접근 후 명령어 실행)

git config --local user.name


git config --local user.email


글로벌 계정정보 변경

git config --global user.name "userName"


git config --global user.email "userEmail"


해당 Repository 계정정보 변경 (해당 Repository에 접근 후 명령어 실행)

git config --local user.name "userName"


git config --local user.email "userEmail"




+ Recent posts