본문 바로가기
Git

[Git] "please tell me who you are" "fetal: unable to auto-detect email address" 오류 해결

by Gina Sim 2021. 2. 4.

얼마 전에 노트북이 전체 초기화되고.... 

다시 git을 설치해서 실행하려고 하니 "please tell me who you are" 오류가 발생했다.

 

Git은 여러 사람이 동시에 작업하다 보니 누가 어느 부분을 commit했는지가 중요하기 때문에

Git을 사용하기 위해 이름과 이메일을 입력해야 한다.

 


다음과 같은 경고문이 뜨면 "Run" 아래에 있는 문장을 그대로 입력만 하면 된다.

더보기

git config --global user.email "이메일 주소"

git  config --global user.nsme "이름"

*** 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.

fetal: unable to auto-detect email address

 

 

 

 

 

반응형

댓글