Skip to content

PullResult

PullResult = { branch: string; ok: true; sha: string; updated: boolean; } | { branch?: string; ok: false; reason: "wrong_branch" | "dirty" | "diverged" | "error"; }

Defined in: src/pull.ts:7

Result of a fast-forward attempt against the local default-branch checkout.