에러 메시지
fatal: unable to auto-detect email address
해결방법
- 커맨트 창에 다음을 입력하고 npm 명령을 실행한다.
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
fatal: unable to auto-detect email address
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
Comments