答案1
要消除错误,您需要设置您的用户名和电子邮件地址。
您可能需要在两个主要上下文中设置此值
特定于您的用户帐户,即
~/.gitconfig
此设置将应用于属于您的用户帐户的任何 git 项目在项目特定的基础上,即
<your_git_project>/.git/config
该特定项目将使用此设置 - 如果出于某种原因您希望特定项目将不同的用户名和电子邮件地址附加到您的提交中。您还可以在系统范围内设置配置选项 - 但我不会介绍这一点
在用户级别设置电子邮件地址
git config --global user.name "John Doe"
git config --global user.email [email protected]
在项目级别设置电子邮件地址。
cd
进入 git repo 的根目录git config user.name "John Doe"
git config user.email [email protected]
答案2
您可以将该条目放入存储库的配置文件中。看到像这样的路径.git/配置
- git config --global user.name“显示名称”
- git config --全局用户.电子邮件“[电子邮件受保护]”
欲了解更多详情:
类型git配置查看如下输出:
--global use global config file
--system use system config file
--local use repository config file