Keep your stack updated
Sync with trunk, restack branches, and handle conflicts.
When your trunk (main
/master
) changes—or you need to revise something mid-stack—mg streamlines the process with commands like mg sync
, mg modify
, and more.
Prerequisites - Create a stack -
Familiarity with mg push
and basic Git conflict resolution
1. Sync with remote changes
Fetch new commits
main
.Clean up merged branches
mg prompts to delete merged branches.
Restack branches
mg restacks any child branches on top of the updated trunk.
If conflicts appear, follow the on-screen instructions to resolve them and run
mg continue
.
2. Update mid-stack branches
Switch to the branch
bash mg checkout feature_2
Make changes and commit
bash mg add . mg commit -m "Address feedback" # or mg modify to amend
Handle restacking
mg automatically re-stacks child branches on top. If you see conflicts, fix
them, mg add .
, then mg continue
.
3. Push again
After local changes:
Or push everything at once:
Your PRs update on mrge.io / GitHub accordingly.
4. Orphan / adopt branches
Orphan a branch
Remove a branch from the stack but keep it in Git:
Adopt a branch
Bring an existing Git branch into mg’s stack:
5. Splitting or folding commits
Split commits
Breaks large commits into smaller ones: bash mg split
Fold/squash commits
If you want to combine commits: bash mg split --fold
Done!
Your stack is in sync with trunk. Each branch can be pushed or merged independently.
- Ready to merge? See Merge your stack.
- Troubleshooting? Check our FAQ.
Happy syncing!
Was this page helpful?