在git創(chuàng)建項(xiàng)目時(shí)出現(xiàn)恃慧,
是因?yàn)樵趧?chuàng)建git文件夾的時(shí)候信息不完善導(dǎo)致的
下圖是正確
在git創(chuàng)建項(xiàng)目時(shí)出現(xiàn),
是因?yàn)樵趧?chuàng)建git文件夾的時(shí)候信息不完善導(dǎo)致的
下圖是正確
1.git 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"
*** 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@MS-201610130300.(none)')
所以解決方法是當(dāng)出現(xiàn)這個(gè)上述提示后 接著補(bǔ)充
你在命令行中執(zhí)行
git config --global user.email "你的郵箱"
git config --global user.name "你的名字"
(注意 “ 前面是有空格的)
輸入完后再接著執(zhí)行g(shù)it commit 即可成功!