소프트웨어/Jetbrains Intellij

[git/commit] *** Please tell me who you are.

henry.hong 2020. 1. 31. 16:31

intellij 에서 commit을 하려 할 때, 아래와 같이 문구가 나온다면, 

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

 

intellij 의 터미널에서 위 명령어를 실행해준다.

 

ui-MacBookPro:tubelife tube.hong$ git config --global user.email "이메일주소"
ui-MacBookPro:tubelife tube.hong$ git config --global user.name "이름"

 

그 뒤 다시 커밋하면 정상 수행된다.