728x90
반응형
문제 - Git commit 시 다음과 같은 에러 발생
이전까지 잘 작동하던 git 명령어에서 "누구냐 넌!" 이라는 메세지를 출력하는 에러를 만남.
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.
다음의 실행으로 문제 해결
git init
git config user.name "someone"
git config user.email "someone@someplace.com"
git add *
git commit -m "some init msg"
728x90
반응형
댓글