Git问“请告诉我你是谁”。无法自动检测电子邮件地址?

时间:2018-07-12 21:21:26

标签: node.js

控制台日志错误:

please tell me who you are

我运行这个:

git config  _ _global user.email"you@example.com"
git config  _ _global user.email"you@example.com"

进行设置。您的帐户的默认身份。 省略_ _ global以仅在此存储库中设置身份。

1 个答案:

答案 0 :(得分:1)

尝试一下:

git config --global user.name "John Doe" // config name, don't for your question
git config --global user.email johndoe@example.com

使用--global的{​​{1}}盗版

选中Getting Started - First-Time Git Setup

如果仅要为该存储库设置,则应修改_ _global.git/config设置全局配置,而不仅仅是一个存储库。