Merging a stack
Tip
We strongly recommend merging with the Graphite UI over merging via just the CLI. It saves our engineers and others a substantial amount of time by automating the process of waiting for CI, merging, and rebasing.
If you haven't tried it yet, check out the instructions here.
Merging a stack via the Graphite dashboard
To merge a stack using the Graphite dashboard, we recommend using the "Merge..." button in the Graphite dashboard, which will queue merge jobs for each PR in your stack, automating the process described below.
If you have remaining upstack branches that aren't included in your merge, you'll want to gt repo sync --restack
and gt stack submit
after the merge is done, similar to the process described below.
Merging a stack via the Graphite CLI
Alternatively, merge the PRs in the stack one at a time:
Merge the bottom PR of your stack into your trunk on the Graphite dashboard (or via GitHub).
Run
gt repo sync --restack
from any branch of your stack to pull trunk to local, delete the merged branch, and restack the rest of your stack on trunk.From any branch in your stack, run
gt stack submit
to force push the restacked branches so that the new bottom of your stack can be merged into trunk.Repeat until you've landed all of the branches in your stack.
Congratulations - you've landed your stack! Check out the rest of the CLI guide for power user features and to learn about the Graphite dashboard.