*** 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 'Administrator@V92I2BPQSUKZBCB.(
解决办法:
1git init 2.git config user.name 【空格】"someone" 3.git config user.email 【空格】"someone@someplace.com" 4.git add * 5.git commit -m "some init msg"
在2 ,3 中一定要加空格!!!