728x90
반응형
에러 발생
vscode에서 git 명령어로 commit 시 발생
주로 해당 컴퓨터에서 처음 커밋 시 발생하므로 깃 설정이 추가적으로 필요하다는 메시지입니다.
git commit -m "vuejs init"
C:\study\vue\vue-project>git commit -m "vuejs init"
Author identity unknown
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'lemon@DESKTOP-PINSL5S.(none)')
에러 해결 방법
깃에서 사용할 이메일 및 이름을 설정해 줍니다.
-깃 이메일 설정
git config --global user.email "you@example.com"
-깃 이름 설정
git config --global user.name "Your Name"
에러 해결
정상적으로 git commit 명령어 작동
git commit -m "vuejs init"
728x90
반응형
댓글