Interface PlaceRemoteRepositoryCommitsQuery

Query parameters for remote repository commits

interface PlaceRemoteRepositoryCommitsQuery {
    branch?: string;
    depth?: number;
    password?: string;
    repository_url: string;
    username?: string;
}

Hierarchy (View Summary)

Properties

branch?: string

The branch to grab commits from

depth?: number

The number of commits to return

password?: string

The password or access token as required

repository_url: string

The git URL that represents the repository (required)

username?: string

A username for access if required