깃 Please tell me who you are 해결법

김도훈·2022년 5월 31일
0
post-thumbnail

오류 내용

깃 커밋을 하던도중 다음과 같은 오류가 뜨면서 진행이 안됨
*** 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.

해결방법

git config --global user.email "you@example.com" << 본인 이메일
git config --global user.name "Your Name" << 본인 닉네임

0개의 댓글