'web_automation' ,但初始提交失败: 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. unable to auto-detect email address (got 'ASUS@huang.(none)')
时间: 2024-04-18 11:26:24 浏览: 191
git-clone-init:在git clone上自动设置用户身份(user.email user.name)
这个错误是由于你在使用Git提交时未设置局的用户信息导致的。你可以按照错误提示中的建议,运行以下两个命令来设置你的用户名和邮箱:
```
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
```
请确保将 "Your Name" 替换为你的名字,"you@example.com" 替换为你的邮箱地址。
如果你只想在当前仓库中设置身份信息而不是全局设置,可以去掉 `--global` 参数,例如:
```
git config user.name "Your Name"
git config user.email "you@example.com"
```
设置完身份信息后,你应该能够成功提交代码到GitHub了。如果还有其他问题,请随时提问。
阅读全文