Skip to content

Latest commit

History

History
27 lines (16 loc) 路 565 Bytes

git-execa-client.md

File metadata and controls

27 lines (16 loc) 路 565 Bytes

GitExecaClient

An implemention of the SDK GitClient interface using execa.

Options

Optional properties are denoted by *

Type: object literal

remote*

Type: string
Default: origin

workingDirectory*

Type: string
Default: process.cwd()

Example

const { GitExecaClient } = require("@abstracter/atomic-release/adapters/git-execa-client");

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