Type Alias BranchGraphCommandMerge

BranchGraphCommandMerge: {
    branch: {
        from: string;
        to: string;
    };
    command: "merge";
}

Merge the branch specified by branch.from into the branch specified by branch.to.