我在Ubuntu 14.04 32位上使用git,我尝试提交并收到此错误:
*** 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 'svetlana@svetlana-AO722.(none)')
我做了所有这些,但似乎看到我的电脑名称有@,如何更正?
答案 0 :(得分:1)
使用
git config --global user.email "you@example.com"
使用真实的电子邮件地址。例如
git config --global user.email "pippo@gmail.com"