Interface GitNodeParameters

Source
interface GitNodeParameters {
    authentication?: "none" | "gitPassword";
    key?: string;
    limit?: number;
    message?: string;
    name?: string;
    operation?:
        | "tag"
        | "add"
        | "status"
        | "push"
        | "addConfig"
        | "clone"
        | "commit"
        | "fetch"
        | "listConfig"
        | "log"
        | "pull"
        | "pushTags"
        | "userSetup";
    options?: | { mode?: "append"
    | "set" }
    | { pathsToAdd?: string }
    | { file?: string }
    | { targetRepository?: string };
    pathsToAdd?: string;
    repositoryPath?: string;
    returnAll?: boolean;
    sourceRepository?: string;
    value?: string;
}

Properties§

Source§

readonly authentication?: "none" | "gitPassword"

The way to authenticate Default: "none"

Source§

readonly key?: string

Name of the key to set

Source§

readonly limit?: number

Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":100}

Source§

readonly message?: string

The commit message to use

Source§

readonly name?: string

The name of the tag to create

Source§

readonly operation?:
    | "tag"
    | "add"
    | "status"
    | "push"
    | "addConfig"
    | "clone"
    | "commit"
    | "fetch"
    | "listConfig"
    | "log"
    | "pull"
    | "pushTags"
    | "userSetup"

Default: "log"

Source§

readonly options?:
    | { mode?: "append"
    | "set" }
    | { pathsToAdd?: string }
    | { file?: string }
    | { targetRepository?: string }

Default: {}

Source§

readonly pathsToAdd?: string

Comma-separated list of paths (absolute or relative to Repository Path) of files or folders to add

Source§

readonly repositoryPath?: string

Local path of the git repository to operate on

Source§

readonly returnAll?: boolean

Whether to return all results or only up to a given limit

Source§

readonly sourceRepository?: string

The URL or path of the repository to clone

Source§

readonly value?: string

Value of the key to set