Learn how to configure mg so it knows your trunk branch and can manage stacked PRs.

Why initialize?

mg init sets your trunk (often main), ensuring mg knows where to base new branches and how to restack them.


Steps

1

Navigate to Your Repo

cd /path/to/your-project 
2

Run mg init

bash mg init This will: - Prompt you to select main or master (or another trunk branch) - Create a .git/mrge_repo_config file for storing config

3

Confirm It Worked

mg list 
  • If your repo already has branches, you’ll see them listed
  • If it’s a fresh repo, you’ll see only main

Authentication If mg needs to push to GitHub and can’t detect credentials, it may ask you to authenticate via gh or a personal access token.


Next steps

That’s it! You’ve initialized mrge in your local repository.