UNPKG

git-fresh

Version:

Quickly reset your Git working directory to a clean state without re-cloning. Stashes, wipes, restores, and pops.

11 lines (10 loc) 272 B
interface GitFreshOptions { ignoreEnvFiles?: boolean; skipConfirmation?: boolean; ignoreGlobFiles?: string; } /** * Main function that performs the git fresh operation */ export declare function gitFresh(options?: GitFreshOptions): Promise<void>; export {};