Skip to main content

init

codebolt.git.init(path: string): Promise<any>
Initializes a new Git repository at the given path.

Parameters

NameTypeDescription
pathstringThe file system path where the Git repository should be initialized.

Returns:

 Promise<any>
A promise that resolves with the response from the init event.

Status

Work Progress...

Example


await codebolt.git.init('/path/to/repo')

Explaination

Initialize a new Git repository in the specified directory. It has one parameter.

path: A string specifying the directory path where the new Git repository should be initialized.