backport
Version:
A CLI tool that automates the process of backporting commits
11 lines (10 loc) • 323 B
TypeScript
import type { ValidConfigOptions } from '../../options/options.js';
export declare function pushBackportBranch({ options, backportBranch, }: {
options: ValidConfigOptions;
backportBranch: string;
}): Promise<{
cmdArgs: ReadonlyArray<string>;
code: number | null;
stderr: string;
stdout: string;
}>;