git出现 *** Please tell me who you are. Run...... 错误

*** 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 'Administrator@V92I2BPQSUKZBCB.(          


解决办法:

1git init
2.git config user.name 【空格】"someone"
3.git config user.email 【空格】"[email protected]"
4.git add *
5.git commit -m "some init msg"
 
  
在2 ,3 中一定要加空格!!!

你可能感兴趣的:(github)