git commit 오류

김지혜·2023년 7월 6일
0

git & Github

목록 보기
4/10
post-custom-banner

🚨 문제_git commit 오류

git commit을 하려던 중 해당 오류 발생

$ git commit -m 'sequelize transaction'      
Author identity unknown

*** 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: unable to auto-detect email address (got 'user@DESKTOP-V43IOCL.(none)')

user@DESKTOP-V43IOCL MINGW64 ~/Desktop/3 (main)
$ git add .

user@DESKTOP-V43IOCL MINGW64 ~/Desktop/3 (main)
$ git commit -m 'sequelize transaction'
Author identity unknown

*** 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: unable to auto-detect email address (got 'user@DESKTOP-V43IOCL.(none)')

=> Git이 사용자의 전자 메일 주소와 사용자 이름을 탐지할 수 없음을 나타냄


📍 해결_Git ID

해당 명령어를 시행하여 Git ID 구성이 필요

git config --global user.email "you@example.com"
git config --global user.name "Your Name"
post-custom-banner

0개의 댓글