GitAsyncRefOperationSource specifies the pull request or list of commits to use when making a cherry pick and revert operation request. Only one should be provided.

interface GitAsyncRefOperationSource {
    commitList?: GitCommitRef[];
    pullRequestId?: number;
}

Properties

commitList?: GitCommitRef[]

A list of commits to cherry pick or revert

pullRequestId?: number

Id of the pull request to cherry pick or revert