Mac / / 2022. 2. 7. 00:33

IntelliJ에서 git commit/push 에러(Author identity unknown) 해결 방법

반응형

에러 내용 : 

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: empty ident name (for <>) not allowed

인텔리J 터미널창을 열어서

git계정 주소 정보를 넣어서 아래와 같이 명령어 실행을 해준다.

$ git config --global user.email "이메일주소"
$git config --global user.name "이름"
반응형
  • 네이버 블로그 공유
  • 네이버 밴드 공유
  • 페이스북 공유
  • 카카오스토리 공유