Option for creating a new branch.

interface Create {
    startPoint?: string;
    toCreate: string;
}

Properties

startPoint?: string

The new branch head will point to this commit. It may be given as a branch name, a commit-id, or a tag. If this option is omitted, the current HEAD will be used instead.

toCreate: string

The desired name of the new branch.