Data report"State of code review 2024" is now liveRead the full report

How to split an existing pull request on GitHub

Greg Foster
Greg Foster
Graphite software engineer


Note

This guide explains this concept in vanilla Git. For Graphite documentation, see our CLI docs.


Sometimes, a PR grows too large, making it difficult to review. Splitting a PR into smaller, manageable pieces can improve clarity, facilitate more thorough reviews, and speed up the integration process.

Stop wrestling with Git commands

The Graphite CLI takes all the pain out of Git, allowing you to ship faster and stop Googling Git commands.

Learn more
  1. Ease of review: Smaller PRs are easier to understand and review, leading to more effective code inspections and fewer oversights.

  2. Focused changes: Each PR can focus on a single aspect of the change, reducing the cognitive load on reviewers.

  3. Faster integration: Smaller PRs can be integrated faster, reducing the time changes sit in review queues, which in turn minimizes merge conflicts.

  4. Better discussion: Discussions can be more focused and actionable when they revolve around specific, isolated changes.

According to a Graphite.dev blog post, the optimal PR size is approximately 50 lines. The data suggests that PRs of this size are reviewed and merged about 40% faster than those with 250 lines. Moreover, they are less likely to be reverted and typically garner more thorough reviews with 40% more comments per line of code. These bite-sized PRs not only expedite the review process but also enhance the overall quality and understanding of the code changes.

Before splitting a PR, identify logical breakpoints within your changes where the code can be divided into self-contained updates.

  1. Create new branches for each segment:
    Based on the identified split points, create new branches from the current branch's latest commit.

    git checkout -b new-branch-for-segment

  2. Cherry-pick commits:
    Use git cherry-pick to move commits related to each segment onto the corresponding new branches.

    git cherry-pick <commit-hash>

  3. Push the new branches:
    Push each new branch to the repository.

    git push origin new-branch-for-segment

  4. Open new PRs:
    In GitHub, navigate to each new branch and open a new PR for each segment.

  5. Close the original PR:
    Once the new PRs are created, close the original PR with a comment linking to the new PRs for context.

The Graphite CLI can simplify the process of splitting GitHub PRs by automatically splitting up an existing branch into multiple PRs by commit or hunk, using the gt branch split command.

  1. Select the desired split strategy:
    Determine whether you want to split the existing branch by commit or by hunk. If the selected branch only has one commit you will enter hunk mode automatically. If instead you wish to split your branch along already-defined commits you can use the commit mode.

  2. Run gt branch split:
    Use gt branch split with either the --by-commit flag or the --by-hunk flag.

    By commit using the --by-commit flag In this mode, you split your branch along already-defined commit boundaries. For example, if you have a branch with five commits on it, you could put the first three into one branch and the others into another. This preserves commit history of the original branch and its descendants.

    Split branch by commit

    By hunk using the --by-hunk flag This mode allows you to split your branch by selecting hunks that you'd like to apply to each new branch. The interface is made up of iterative calls to git add --patch, which prompts you to stage your changes. You can split your branch by first staging only those you'd like to include in the first branch, then giving it a name, then moving on to the second, giving that one a name, and so on.

    Split branch by hunk

  3. Push the stacks and open PRs:
    Push the new stacks to GitHub using gt submit --stack. This will prompt you to provide metadata for each newly created PR per branch.

The best engineers use Graphite to simplify Git

Engineers at Vercel, Snowflake & The Browser Company are shipping faster and staying unblocked with Graphite.

Git started for free

Splitting a large PR into smaller, more digestible chunks can greatly improve the review process. Both Git and the Graphite CLI offer tools to facilitate this, whether through manual branch and commit management or through automated stack manipulation.

For more detailed command usage and to understand advanced features, refer to the official Graphite documentation.

Give your PR workflow
an upgrade today

Stack easier | Ship smaller | Review quicker

Or install our CLI.
Product Screenshot 1
Product Screenshot 2