Xcode彈出git提示
*** Please tell me who you are.
Run
git config --global user.email"you@example.com"
git config --globaluser.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 'Rabstone@bogon.(none)')
之前一直沒(méi)這個(gè)提示秩贰,突然就出現(xiàn)了关顷,自己搗鼓了半天诀浪,寫下這篇文章十电,希望給遇到同樣問(wèn)題的小伙伴提供幫助字逗。
解決方案
1.打開(kāi)終端
2.進(jìn)入你的項(xiàng)目
3.輸入git
4.設(shè)置user.name和user.email
? ? (1)git config --global user.name "Your Name"
? ? (2)git config --global user.email "Your email"
5.如果不放心尘执,你可以看一下你設(shè)置成功沒(méi)有
? ? git config -l