Type alias MergeResult

MergeResult: {
    alreadyMerged?: boolean;
    fastForward?: boolean;
    mergeCommit?: boolean;
    oid?: string;
    tree?: string;
}

Type declaration

  • Optional alreadyMerged?: boolean

    True if the branch was already merged so no changes were made.

  • Optional fastForward?: boolean

    True if it was a fast-forward merge.

  • Optional mergeCommit?: boolean

    True if merge resulted in a merge commit.

  • Optional oid?: string

    The SHA-1 object id that is now at the head of the branch. Absent only if dryRun was specified and mergeCommit is true.

  • Optional tree?: string

    The SHA-1 object id of the tree resulting from a merge commit.

Generated using TypeDoc