UNPKG

gitquick

Version:

Git Add, Commit, and Push on the Fly

14 lines 627 B
import { CommandResult } from './types.js'; export declare const commands: { checkGitInstalled: () => Promise<void>; checkGitRepository: () => Promise<void>; getBranch: () => Promise<CommandResult>; getRemoteUrl: () => Promise<CommandResult>; getStatus: () => Promise<CommandResult>; getStatusShort: () => Promise<CommandResult>; stageFiles: () => Promise<CommandResult>; commitChanges: (commitMessage: string) => Promise<CommandResult>; pushChanges: () => Promise<CommandResult>; pushUpstream: (currentBranch: string) => Promise<CommandResult>; }; //# sourceMappingURL=commands.d.ts.map