## Context The `multei/web` repository used **`master`** as the default branch. ## Goal Rename the default branch to **`main`**, matching current GitHub and open-source defaults. ## Suggested scope - [x] Rename `master` → `main` on the remote (`git branch -m` / GitHub “Rename branch”, or equivalent). - [x] Set the repository default branch on GitHub to `main`. - [ ] Update production/deploy branch (Netlify today / Vercel in #416) to build from `main`. - [x] Update branch protection rules, status checks, and environments that pointed at `master`. _(no protection on `master`; nothing to migrate)_ - [x] Update references in code/docs/CI (README, workflows, badges, scripts, clone links). - [x] Communicate to the team / document local clone updates (`git fetch` + `git remote set-head` / tracking). _(instructions in README)_ - [x] Remove remote `master` after validating everything points at `main` (or keep a temporary alias if needed). ## Acceptance criteria - [x] GitHub default branch is `main`. - [ ] Deploy/CI use `main`. _(GitHub Actions on `push` already cover `main`; **pending** Netlify Production branch)_ - [x] No critical remaining references to `master` in docs/CI/deploy (except commit history). - [x] Existing clones have clear local migration instructions. ## Notes - Coordinate with #416 (Vercel) and #415 (Next.js) if production branch changes happen in the same window, to avoid conflicting cutovers. - Remaining follow-up: point Netlify Production branch to `main`.
Context
The
multei/webrepository usedmasteras the default branch.Goal
Rename the default branch to
main, matching current GitHub and open-source defaults.Suggested scope
master→mainon the remote (git branch -m/ GitHub “Rename branch”, or equivalent).main.main.master. (no protection onmaster; nothing to migrate)git fetch+git remote set-head/ tracking). (instructions in README)masterafter validating everything points atmain(or keep a temporary alias if needed).Acceptance criteria
main.main. (GitHub Actions onpushalready covermain; pending Netlify Production branch)masterin docs/CI/deploy (except commit history).Notes
main.