아무거나

fatal: empty ident name (for <(null)>) not allowed 본문

Infra/Git & SVN

fatal: empty ident name (for <(null)>) not allowed

전봉근 2019. 3. 8. 10:41
반응형

fatal: empty ident name (for <(null)>) not allowed. 오류가 생겼을 때

*** 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 <(null)>) not allowed.  


이런 오류가 생겼을때

git config --global user.email 이메일주소@naver.com

git config --global user.name "아이디" 

이메일과 아이디를 넣어주면 된다.

반응형
Comments