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 limit?: number
readonly limit?: number
Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":100}
Source§readonly operation?:
| "tag"
| "add"
| "status"
| "push"
| "addConfig"
| "clone"
| "commit"
| "fetch"
| "listConfig"
| "log"
| "pull"
| "pushTags"
| "userSetup"
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 }
readonly options?:
| { mode?: "append"
| "set" }
| { pathsToAdd?: string }
| { file?: string }
| { targetRepository?: string }
Default: {}
The way to authenticate Default: "none"