git Please tell me who you are解決方法
阿新 • • 發佈:2018-05-13
OS nbsp ESS def tor XA con mep email
在git創建項目時出現,
是因為在創建git文件夾的時候信息不完善導致的
下圖是正確
在git創建項目時出現,
是因為在創建git文件夾的時候信息不完善導致的
下圖是正確
1.git init
2.git config user.name "someone"
3.git config user.email "[email protected]"
4.git add *
5.git commit -m "some init msg"
*** 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@MS-201610130300.(none)‘)
所以解決方法是當出現這個上述提示後 接著補充
你在命令行中執行
git config --global user.email "你的郵箱" git config --global user.name "你的名字"
(註意 “ 前面是有空格的)
輸入完後再接著執行git commit 即可成功!
git Please tell me who you are解決方法