# Git config 설정 확인하기 $ git config --global --list $ git config --list # user.name user.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 ..