projex
Version:
A command line to manage the workflow
16 lines (15 loc) • 713 B
TypeScript
/**
* The function `checkGit` checks if Git is available in the system and throws an error if it is not.
*/
export declare const checkGit: () => void;
/**
* The function `checkIfInGitRepo` checks if the current working directory is a git repository in
* TypeScript.
*/
export declare const checkIfInGitRepo: () => void;
export declare const tag: (tagName: string, root: string) => any;
export declare const pushCommand: (tagName: string, noTag: boolean | undefined) => string;
export declare const gitStatus: (root: string) => any;
export declare const getGitCommits: (root: string) => any;
export declare const getTheLastTag: (root: string) => any;
export declare const getOriginUrl: (root: string) => any;