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

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_32846595/article/details/75330360

*** 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 中一定要加空格!!!

猜你喜欢

转载自blog.csdn.net/qq_32846595/article/details/75330360