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 config --global user.email "you@example.com" git config --global user.name "Your Name"