跳到主要内容

在 GitHub Desktop 中挑选提交

您可以使用 GitHub Desktop 挑选一个分支上的特定提交,并将该提交复制到另一个分支。

平台导航

关于 Git cherry-pick

您可以挑选一个分支上的提交,以创建一个具有相同更改的提交副本到另一个分支。如果您将更改提交到错误的分支,或者想要对另一个分支进行相同的更改,您可以挑选提交以将更改应用于另一个分支。您也可以使用挑选提交来应用特定更改,然后再准备创建或合并拉取请求。例如,如果您将错误修复提交到功能分支,则可以将包含错误修复的提交挑选到项目的其他分支。

在与团队协作时,您也可以使用挑选提交。某些项目通过挑选提交来整合贡献。有关更多信息,请参阅 Git 文档中的分布式 Git - 维持项目

挑选提交

  1. 在 GitHub Desktop 中,单击 当前分支.

    Screenshot of the repository bar. A button, labeled "Current Branch" with a downward arrow indicating a dropdown menu, is outlined in orange.

  2. 在分支列表中,单击包含要挑选的提交的分支。

    Screenshot of the "Current Branch" dropdown view. Under "Recent Branches", a branch, named "my-feature", is highlighted with an orange outline.

  3. 在左侧边栏中,单击**历史记录**。

    Screenshot of the "History" tab in the sidebar. Above a list of commits, the tab button, labeled "History", is highlighted with an orange outline.

  4. 选择要挑选的提交。

    您可以使用CommandShift选择一个或多个提交。

    您可以使用CtrlShift选择一个或多个提交。

  5. 右键单击所选提交,然后单击**挑选提交**,然后选择要将提交复制到的分支。您也可以将要挑选的提交从“历史记录”选项卡拖动到 **当前分支**下拉菜单,然后将提交放到要将提交复制到的分支上。

    Screenshot of the "History" tab and the "Current Branch" dropdown view. The cursor hovers over the "my-feature" branch, and "plus one" icons indicate the addition of one commit.

  6. 当前分支将更改为已挑选提交的分支。您现在可以将挑选的提交推送到远程仓库。

进一步阅读