Skip to content

如何向提交中添加多个作者

您可以通过向提交的消息中添加一个或多个Co-authored-by标记,将多个作者添加到git提交中:

$ git commit -m "重构可用性测试。
>
>
Co-authored-by: name <name@example.com>
Co-authored-by: another-name <another-name@example.com>"

注意事项:

  • 要正确将提交归属于合作者,必须使用与其GitHub帐户关联的电子邮件。
  • 如果某人的电子邮件是私有的,可以使用他们GitHub提供的no-reply电子邮件。
  • 在任何Co-authored-by标记之前,留下一个或最好是两个空行。