오류 내용
안드로이드 스튜디오를 통해 개발을 진행하던 중 오류가 발생하였습니다.
- Successfully created project '***' on GitHub, but initial commit failed: 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. empty ident name (for
) not allowed
안드로이드 스튜디오에서 git을 처음으로 커밋하는 과장에서 생기는 오류입니다.
오류 해결 방법
해결 방법은 간단합니다. 아래의 명령문을 AndroidStudio 터미널에 적어주시면 됩니다.
git config —global user.email "test@gmail.com" << 자신의 Git 아이디를
git config —global user.name "test" << 자신의 Git 이름을 적으면 됩니다.
이렇게 간단히 해결할 수 있습니다. 오늘도 즐거운 코딩 하세요 ~
반응형