git submission error

*** 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: unable to auto-detect email address (got 'bindu@bindu-virtual-machine.(none)')
bindu@

According to message: you need to configure git, execute the following two commands

git config --global user.email "[email protected]"
git config --global user.name "Your Name"

 

Guess you like

Origin www.cnblogs.com/1218-mzc/p/11357217.html