Syncing Main Branch (Deprecated Reference)
This workflow is excluded from active discovery but retained for explicit local compatibility. Operate on the current repository and preserve the branch, commits, and files being left.
Workflow
- Inspect tracked and untracked state, branch, and HEAD:
git status --porcelain=v1 --untracked-files=all
git status --short --branch
git symbolic-ref --quiet --short HEAD
Stop on any local change; do not stash, commit, discard, or carry it automatically. If HEAD is detached, record it and inspect containing refs. Stop until an otherwise reflog-only commit is preserved with a user-chosen branch or tag.
Resolve
mainexactly.- Use local
refs/heads/mainwhen it exists. - If absent, create tracking
mainonly when exactly one intended remotemainis clear:git switch --no-overwrite-ignore --track -c main <remote>/main. - Stop if the remote is ambiguous,
maindoes not exist, or another worktree owns it. Do not substitute another branch or bypass worktree protection.
- Use local
Switch with ignored-file overwrite protection when needed:
git switch --no-overwrite-ignore main
- Verify
maintracks the intended upstream, fetch its configured remote, then fast-forward only:
upstream_remote=$(git config --get branch.main.remote)
git rev-parse --abbrev-ref 'main@{upstream}'
git fetch "$upstream_remote"
git merge --ff-only --no-overwrite-ignore 'main@{upstream}'
Stop on missing or unexpected upstream, authentication failure, divergence, ignored-file collision, or non-fast-forward. Do not rebase, reset, force, delete files, change upstream, or delete the previous branch.
- Verify
git status --short --branchandgit log -1 --oneline --decorate. Report the active branch, before/after object IDs, upstream, and whether it advanced. “Already up to date” is success and requires no commit.