创建有多个作者的提交
通过在提交消息中添加一个或多个 Co-authored-by
尾行,可将提交归属于多个作者。 合作提交在 GitHub Enterprise 上可见,并且可包含在个人资料贡献图和仓库统计信息中。
必需的合作作者信息
向提交添加合作作者之前,您必须知道用于每个合作作者的适当电子邮件地址。 对于计为贡献的合作作者提交,必须使用与其 GitHub Enterprise 帐户相关联的电子邮件地址。
Creating co-authored commits using GitHub Desktop
You can use GitHub Desktop to create a commit with a co-author. For more information, see "Write a commit message and push your changes" and GitHub Desktop.
Creating co-authored commits on the command line
-
收集每位合作作者的姓名和电子邮件地址。
-
键入提交消息以及对更改的简短、有意义说明。键入提交说明后,添加两个空行而不是结束引号。
$ git commit -m "Refactor usability tests. > >
提示:如果您在命令行中使用文本编辑器键入提交消息,请确保提交说明的末尾与 Co-authored-by:
提交结尾之间有两行。
-
在提交消息的下一行,根据每个合作作者的特定信息键入
Co-authored-by: name <name@example.com>
。 在合作作者的信息后面,添加一个右引号。如果要添加多个合作作者,请为每个合作作者键入一个 `Co-authored-by:` 提交尾行。
$ git commit -m "Refactor usability tests. > > Co-authored-by: name <name@example.com> Co-authored-by: another-name <another-name@example.com>"
在下次推送时,新的提交和消息将显示在 您的 GitHub Enterprise Server 实例 上。 更多信息请参阅“推送到远程仓库”。
Creating co-authored commits on GitHub Enterprise
After you've made changes in a file using the web editor on GitHub Enterprise, you can create a co-authored commit by adding a Co-authored-by:
trailer to the commit's message.
-
收集每位合作作者的姓名和电子邮件地址。
-
合作进行更改后,在页面底部键入简短、有意义的提交消息,以描述你们所做的更改。
-
在提交消息下方的文本框中,根据每个合作作者的特定信息添加
Co-authored-by: name <name@example.com>
。 如果要添加多个合作作者,请为每个合作作者键入一个Co-authored-by:
提交尾行。 -
单击 Commit changes(提交更改)或 Propose changes(提议更改)。
The new commit and message will appear on 您的 GitHub Enterprise Server 实例.
延伸阅读
- "在个人资料中查看贡献"
- “为什么我的贡献没有在我的个人资料中显示?”
- “查看仓库活动的摘要”
- “查看项目的贡献者”
- “更改提交消息”
- GitHub Desktop 文档中的“提交和审查对项目的更改”