상황
설명
git config --list
git config --list --system
git config --list --global
git config --list --local
해결
git config --global user.name "YOURNAME"
git config --global user.email "your@email.com"
git config --local user.name "YOURNAME"
git config --local user.email "your@email.com"