git bash 的身份验证问题
在使用git bash时输入 git commit -m "text commit"却发生如下问题,请问该如何解决?$ git commit -m "text commit"
Author identity unknown
*** 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 'david@DAVIDMOU.(none)') 这个问题是由于Git无法识别您的身份信息导致的。您可以按照以下步骤解决该问题:
1. 打开Git Bash终端。
2. 输入以下命令设置您的电子邮件地址:
git config --global user.email "you@example.com"
将"you@example.com"替换为您的实际电子邮件地址。
3. 输入以下命令设置您的用户名:
git config --global user.name "Your Name"
将"Your Name"替换为您的实际姓名。
4. 重新运行您的提交命令:
git commit -m "text commit"
现在Git应该能够识别您的身份信息并成功进行提交。
请注意,如果您只想在当前仓库设置身份信息,而不是全局设置,可以省略 --global 参数。
页:
[1]