여씨의 개발이야기

[git] make sure you configure your 'user.name' and 'user.email' in git 본문

😺 Git

[git] make sure you configure your 'user.name' and 'user.email' in git

yeossi 2024. 1. 24. 16:52

이런 오류가 뜨는 이유는, 초기 git 세팅에서 말그대로 name, email 세팅을 안 해줬기 때문.

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.
 
콘솔을 보면 위와 같이 명령어를 입력하라고 적혀있음
Comments