我正在尝试以其他用户身份进行一些更改,但是我没有有效的电子邮件地址,以下命令对我不起作用:
git commit --author="john doe" -m "some fix"
fatal: No existing author found with 'john doe'
尝试仅使用电子邮件地址提交时,我遇到相同的问题
git commit --author="john@doe.com" -m "some fix"
fatal: No existing author found with 'john@doe.com'
在GIT手册页上的commit命令中,它说我可以使用
standard A U Thor <author@example.com> format
对于--author选项。
该格式在哪里定义?A和U代表什么?我该如何仅使用用户名或仅使用电子邮件来提交其他用户?