我试图提交一些改变作为一个不同的用户,但我没有一个有效的电子邮件地址,以下命令不适合我:
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 手册页上,它说我可以使用
standard A U Thor <author@example.com> format
用于—— author 选项。
这种格式在哪里定义? A 和 U 代表什么?我如何提交一个不同的用户只有一个用户名或只有一个电子邮件?