Reference
Command cheatsheet
Quick reference for all mg commands
This cheatsheet provides a concise reference for most mg commands. For detailed information on each command, click the command name to view its dedicated documentation page.
mg
only intercepts recognized subcommands. Everything else is passed through
to Git, so your normal Git workflow stays intact.
Command | Description |
---|---|
mg init | Initialize mg in your repository and identify your trunk branch. |
mg branch <branch_name> | Create a new branch on top of the one you’re on. |
mg list | View your entire stack/tree of branches. |
mg checkout <branch> | Switch to a different branch. |
mg push | Push the current branch (PR) to remote. |
mg push --all | Push the entire stack to remote. |
mg sync | Sync with remote (rebases and re-stacks if main changed). |
mg orphan | Remove the current branch from mg’s tree tracking (no deletion in Git). |
mg commit -b | Commit and auto-generate a new branch name (--branch-name <name> if you prefer). |
mg split | Interactive rebase / split a larger commit. |
mg adopt <branch> | Bring an existing Git branch under mg’s stack tracking. |
mg reparent --parent <branch> | Change the current branch’s parent. |
mg next | Move to the child branch in your stack. |
mg prev | Move to the parent branch in your stack. |
mg help | See all available mg commands. |
If a PR is merged upstream, mg sync
automatically re-stacks child
branches to the new parent. This doesn’t directly pull from main
—so if you
want local changes from the remote trunk, run mg sync
or do a git pull
.
Common Workflows
Creating a stack
Keeping a stack updated
Moving between branches in a stack
For more detailed information about each command, refer to the individual command pages in the reference section.
Was this page helpful?