$ git commit -m ‘zq’ 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 o
时间: 2024-04-09 15:34:05 浏览: 310
nly for this repository.
Git is asking you to provide your identity information before you commit your changes. To set your account's default identity, you can run the following commands:
```
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
```
Replace "you@example.com" with your email address and "Your Name" with your name. If you don't want to set a global identity and only want to set it for this repository, you can omit the `--global` flag. After running these commands, you should be able to commit your changes with your specified identity.
相关问题
$ git commit -m "myWebsite" 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 '86571@GCNY.(none)')
这个错误意味着 Git 不知道你的身份信息,你需要设置你的 Git 用户名和电子邮件地址。你可以使用以下命令设置 Git 用户名和电子邮件地址:
```
git config --global user.name "你的用户名"
git config --global user.email "你的电子邮件地址"
```
其中,`你的用户名` 是你在 Git 上使用的用户名,`你的电子邮件地址` 是你在 Git 上使用的电子邮件地址。注意,这里的 `--global` 选项是可选的,如果你只想在当前仓库中设置身份信息,可以省略该选项。
设置完身份信息后,再次使用 `git commit` 命令提交代码即可。
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)')
这个提示说明你没有设置 git 的用户信息,需要先设置一下用户信息才能提交代码。
你可以按照提示执行以下命令设置用户信息:
```
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
```
将上面的命令中的 "you@example.com" 和 "Your Name" 替换成你自己的邮箱和用户名即可。
然后再次执行 `git commit` 命令提交代码即可。
阅读全文