티스토리 뷰
로컬에서 기본값으로 사용할 Git 사용자 이름과 이메일 설정(global 옵션)
현재 시스템의 모든 Git 작업에 사용할 사용자 이름과 이메일을 설정하고자 한다면, global옵션을 사용해 git config 명령어를 실행한다.
$ git config --global user.name "Your Name"
$ git config --global user.email you@example.com
잘 설정되었는지 확인하는법
$ git config user.name
$ git config user.email
저장소 별로 Git 사용자와 이메일 정보 설정하기
저장소 디렉터리에서 --global 없이 git config를 사용하면 해당 디렉터리(저장소) 전용 설정을 추가할 수 있다.
$ git config user.name "realapril"
$ git config user.email realapril25@gmail.com
global 옵션으로 설정한 정보보다 우선적으로 설정된다.
Git 사용자 이름과 이메일 정보 삭제하기
# 전역 설정을 삭제
$ git config --global --unset user.name
$ git config --global --unset user.email
# 개별 저장소의 설정을 삭제
$ git config --unset user.name
$ git config --unset user.email
댓글