[GitHub Desktop] Author identity unknown 에러 해결 방법
GitHub Desktop에서 "Author identity unknown" 오류가 발생할 경우, 사용자의 이름과 이메일 주소를 설정해야 합니다. 설정 방법은 File > Options > Git 항목에서 GitHub에서 사용하는 이메일 주소로 Name과 Email을 설정하는 것입니다.
Dec 29, 2023
오류 코드
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 ‘ ‘)
해결 방법
- File > Options > Git 항목에 들어간다.
- Name 항목과 Email 항목을 GitHub 에서 사용하는 Primary email address와 동일하게 설정한다.
Share article