UNPKG

git-suggest

Version:

A lightweight command-line tool that automatically generates contextual, high-quality Git commit messages based on your staged code changes. Powered by GitHub Copilot CLI, it helps you write smarter commits with less typing.

13 lines 435 B
import { GitChange } from '../types'; export declare class GitUtils { static getStagedChanges(): Promise<GitChange[]>; private static getFileStats; private static getFileDiff; static getCurrentBranch(): Promise<string>; static getRecentCommits(count?: number): Promise<string[]>; static getRepositoryContext(): Promise<{ name: string; remote?: string; }>; } //# sourceMappingURL=git.d.ts.map