export declare function isGitRepo(cwd?: string): Promise; export declare function getCurrGitBranch(cwd?: string): Promise; export declare function getUnpushedGitCommits(cwd?: string): Promise; export declare function hasUnpushedGitCommits(cwd?: string): Promise; export declare function getGitStatus(cwd?: string): Promise; export declare function gitIsClean(cwd?: string): Promise; export declare function gitNotClean(cwd?: string): Promise; export declare function ensureGitClean(cwd?: string): Promise; export declare function getGitUrl(): Promise; export declare function parseGitUrl(url: string): { groupName: string; projectName: string; }; export declare function getGitNames(): Promise<{ groupName: string; projectName: string; }>; export declare function getGitBranch(): Promise; //# sourceMappingURL=git.d.ts.map