UNPKG

simple-git

Version:

Simple GIT interface for node.js

35 lines (33 loc) 1.17 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const git_error_1 = require("./git-error"); /** * The `GitResponseError` is the wrapper for a parsed response that is treated as * a fatal error, for example attempting a `merge` can leave the repo in a corrupted * state when there are conflicts so the task will reject rather than resolve. * * For example, catching the merge conflict exception: * * ```typescript import { gitP, SimpleGit, GitResponseError, MergeSummary } from 'simple-git'; const git = gitP(repoRoot); const mergeOptions: string[] = ['--no-ff', 'other-branch']; const mergeSummary: MergeSummary = await git.merge(mergeOptions) .catch((e: GitResponseError<MergeSummary>) => e.git); if (mergeSummary.failed) { // deal with the error } ``` */ class GitResponseError extends git_error_1.GitError { constructor( /** * `.git` access the parsed response that is treated as being an error */ git, message) { super(undefined, message || String(git)); this.git = git; } } exports.GitResponseError = GitResponseError; //# sourceMappingURL=git-response-error.js.map