$ 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 18:34:05 浏览: 272
git设置用户名密码的示例代码
To set your author identity for this repository, you can run the following commands:
```
git config user.email "you@example.com"
git config user.name "Your Name"
```
Make sure to replace "you@example.com" with your email address and "Your Name" with your actual name. After running these commands, you should be able to commit your changes with the correct author identity.
阅读全文