您的位置:首页 > 大数据 > 人工智能

*** Please tell me who you are. Run git config --global user.email "you@example.com" git confi

2017-05-26 11:25 519 查看
在github提交代码的时候出现了这个问题:

*** 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 'chenxiao@LAPTOP-S9MH6P88.(none)')

解决方法很简单,只需在当前输入下面两句命令,把引号里的改成自己的邮箱和账号就OK了

  git config --global user.email "you@example.com"

  git config --global user.name "Your Name"

然后就可以做接下来的操作了
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐