본문 바로가기
Computer Science/Git

[Git] Git config 설정 (user.name & user.email)

by happy coding! 2022. 6. 21.
반응형

Git config 설정 확인하기

$ git config --global --list
$ git config --list

user name, email 설정

$ git config user.name "user 이름"
$ git config user.email "user 이메일"

$ git config --global user.name "user 이름"
$ git config --global user.email "user 이메일"

user.name과 user.email 삭제

$ git config --unset user.name
$ git config --unset user.email

$ git config --unset --global user.name
$ git config --unset --global user.email
반응형

댓글