@coat/cli
Version:
TODO: See #3
11 lines (10 loc) • 372 B
TypeScript
/**
* Initializes a git repository and creates an initial
* commit with all generated files.
*
* If git is unavailable, or the project is already a part of
* a git repository, no git repository or commit will be created
*
* @param cwd The working directory of the newly created coat project
*/
export declare function addInitialCommit(cwd: string): Promise<void>;