Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 505 Bytes

git-exec-client.md

File metadata and controls

27 lines (16 loc) · 505 Bytes

GitExecClient

An implementation of the SDK GitClient interface using node:child_process module.

Config

Optional properties are denoted by *

Type: object literal

remote*

Type: string
Default: origin

workingDirectory*

Type: string
Default: process.cwd()

Example

const { SDK } = require("@abstracter/atomic-release");

const gitClient = new SDK.GitExecClient({ remote: "origin2", workingDirectory: "/some/absolute/path" });