Additional resources
FAQ & troubleshooting
Common questions and solutions for mrge
This page addresses frequently asked questions and common obstacles you might encounter when using mrge. If you don’t find your issue here, check our community forums or open a GitHub issue.
Why is my branch out of sync?
- Symptoms:
- You see a message like “This branch is X commits behind
main
.” - Merge conflicts pop up unexpectedly when creating or pushing a PR.
- You see a message like “This branch is X commits behind
- Cause: Your local branch might be outdated compared to
main
or your parent branch. - Solution:
- Pull the latest changes from remote:
- Run
mg sync
to rebase or merge your current branch onto the latest commits.
- Pull the latest changes from remote:
I can’t push my stack – conflict with remote?
- Symptoms:
mg push
fails with a conflict error message.- GitHub shows a “resolve conflicts” prompt.
- Cause: One of your parent branches was rebased or force-pushed, and your local changes no longer match.
- Solution:
- Run
git fetch origin
to ensure you have the latest changes. - Resolve conflicts locally, then commit.
- Retry
mg push
.
If the problem persists, confirm nobody has force-pushedmain
.
- Run
Error codes or known tricky scenarios
E-101: No .mrge directory found
- Ensure you’ve run
mg init
in your repo.
- Ensure you’ve run
E-202: Branch not tracked
- Adopt the branch with
mg adopt <branch_name>
or create a new one usingmg branch
.
- Adopt the branch with
E-303: Force push required
- This appears if you rewrite commits on a published branch. You can force push, but coordinate with teammates to avoid confusion.
E-404: Branch does not exist
- Verify the branch name and ensure it’s spelled correctly.
E-409: Merge conflict
- Resolve conflicts,
git add
the files, then continue yourmg sync
ormg push
workflow.
- Resolve conflicts,
General tips
- Keep Branches Small: Smaller changes reduce merge conflicts and simplify troubleshooting.
- Sync Frequently: If you’re constantly out of date, handle updates & sync more often.
- Check
mg list
: If a branch is missing or incorrectly parented, reparent or adopt as needed.
Still stuck?
- How-to guides: Step-by-step instructions for common workflows.
- Advanced workflows: Deeper dives for complex or monorepo setups.
- Integration tips: Ensure your CI/CD pipeline isn’t causing unexpected conflicts.