D:\git\ci_background>git commit -m "提交缓存文件 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 'xuean@xueantai.(none)')
时间: 2024-03-18 09:39:01 浏览: 79
git-commit-lint-vscode:vscode一款git 规范化提交插件
5星 · 资源好评率100%
这个提示说明你没有设置 git 的用户信息,需要先设置一下用户信息才能提交代码。
你可以按照提示执行以下命令设置用户信息:
```
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
```
将上面的命令中的 "you@example.com" 和 "Your Name" 替换成你自己的邮箱和用户名即可。
然后再次执行 `git commit` 命令提交代码即可。
阅读全文