git config --list
## 또는
git config -l
git config --global user.name "USER_NAME"
git config --global user.email "USER_EMAIL"
git config --local user.name "USER_NAME"
git config --local user.email "USER_EMAIL"
설정된 user.name, user.email이 있을 때, 삭제 후 설정 진행
# global
git config --unset --global user.name
git config --unset --global user.email
# local
git config --unset user.name
git config --unset user.email
감사합니다