尝试提交存储库时,出现错误:
$ git commit
*** 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 '[output redacted]')
显而易见的解决方案是在输出中运行git config
选项,但我不想这样做。
相关计算机不属于特定人员,但属于共享计算机。因此,每个提交都是不同的用户。
如何绕过这个并将作者设置为每次提交而不是全局?