How to solve the git commit error problem?

Commit failed - exit code 128 received, with output: '*** Please tell me who you are.
 
Run
 
  git config --global user.email "[email protected]"
  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: empty ident name (for <>) not allowed'

  Need to be added to the project .git\config file

[user]
    name = your name
    email = your email

 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324607819&siteId=291194637
Recommended