Developer/GitHub
Make sure you configure your 'user.name' and 'user.email' in git 에러 해결하는법
Jace.K
2021. 3. 17. 22:54
VS code에 있는 프로젝트를 GitHub으로 Push할때
제목과 같은 에러가 발생할때
git config --global user.name "My Name"
git config --global user.email "myemail@example.com"
Terminal에 위와 같이 입력하면 해결가능합니다
"My Name"과 "myemail@example.com"에는 본인 아이디, 이메일을 입력해야 합니다.