Stacked PRs
Core concepts for trunk-based development and stacking
mrge is built on the principle that small, incremental changes are easier to review, test, and merge than massive commits.
In a world where AI tools can generate large amounts of code quickly, keeping changes small and well-organized is even more critical for human reviewers.
By stacking pull requests, you can develop feature after feature without merging each one back into main
first, while ensuring every increment is clear, reviewable, and testable.
What are stacked PRs?
A “stacked PR” is simply a pull request that is based on another in-progress pull request, instead of being branched off your main code branch. Conceptually, imagine each branch in your workflow as a short step on top of the previous one:
Each feature branch builds on the work of the previous one. This makes it easier to:
-
Keep pull requests small: Each PR includes only the delta from its parent.
-
Allow early feedback: Teammates can review
feature_2
independently offeature_1
. -
Reduce merge conflicts: Once
feature_1
merges,feature_2
simply rebases onto the new main.
Why stacked PRs?
By splitting your changes into multiple PRs, reviewers can provide faster, more targeted feedback:
-
Shorter review cycles: Instead of wading through 2k lines of code, teammates can review logical chunks.
-
Easier backtracking: If
feature_2
isn’t ready, you can still move forward withfeature_1
. -
Iterate rapidly: No waiting for merges to start the next piece of work.
This approach fosters a trunk-based development workflow:
-
main
stays stable. -
Short-lived branches build off
main
(or their parent branch). -
Each stacked PR merges back to
main
once approved.
How mrge fits in
mrge automates much of the busywork typically associated with stacked branches. Instead of manually rebasing, renaming branches, or struggling with merges, you can:
-
Create branches instantly with
mg branch <branch_name>
. -
Visualize your stack via
mg list
. -
Sync with remote changes in
main
usingmg sync
. -
Re-parent or rename if you need to reshape your branch relationships.
Ultimately, mrge helps teams move faster by removing friction from your Git workflow and letting you focus on building features, not wrangling merges.
Continue exploring:
-
Quickstart: Try your first stacked PR.
-
How-to guides: Learn step-by-step best practices.
-
Command reference: Dive deep into each mrge command.
Was this page helpful?