Create a pull request
Use mg to create a single PR, just like in Git/GitHub.
If you’re only opening one pull request—no complex stacking—you can keep using normal Git commands exactly as before (e.g., git checkout -b my-feature
, git commit -m "message"
, git push
). Using mg is entirely optional for a single PR workflow—but it can still help you save time with commands like mg branch
and mg push
.
Prerequisites
-
Install mg (optional for single PRs, but useful if you want to try mg’s features)
-
Initialize your repo if you plan on using mg for pushing to mrge/GitHub
1. Make your changes (Option A: Use mg)
Create a new branch and commit in one command
This automatically creates a new branch and commits changes under that branch.
Or (Option B: Keep using Git)
Create a branch
Make changes
Commit your changes
Both approaches are valid. In either case, your new branch is ready for a pull request.
2. Push to open a PR
Either way, you end up with a single PR on GitHub or mrge.
3. Respond to reviews
If your teammates review the PR and request changes:
Check out your feature branch
Using mg:
or using Git:
Make and commit changes
Using Git:
or using mg:
Push changes
Using mg:
or using Git:
The existing PR automatically updates.
4. Merge
You can merge your single-PR branch through GitHub’s UI or the mrge UI (mrge can show just one PR, even if it’s not a stack). Either way, once it’s approved and merged, you’re done!
That’s it!
For a single pull request, your workflow doesn’t really change—you can continue using Git exactly as before. mg is there if you’d like to streamline creating branches and pushing PRs, but it’s optional for one-branch flows.
Want to see mg’s real power? Check out Create a Stack to learn about stacking multiple branches for cleaner, smaller PRs.
Was this page helpful?