Git
Helper functions for working with Git.
Functions
isGitRepository()
function isGitRepository(gitRepositoryPath): Promise<boolean>
Defined in: functions/git.ts:10
Helper function to determine whether the given path is inside of a Git repository.
Parameters
Parameter | Type |
---|---|
gitRepositoryPath | string |
Returns
Promise
<boolean
>
isGitRepositoryClean()
function isGitRepositoryClean(gitRepositoryPath): Promise<boolean>
Defined in: functions/git.ts:22
Helper function to determine whether the given Git repository is "clean", meaning has no unchanged files from the head.
Parameters
Parameter | Type |
---|---|
gitRepositoryPath | string |
Returns
Promise
<boolean
>
isGitRepositoryLatestCommit()
function isGitRepositoryLatestCommit(gitRepositoryPath): Promise<boolean>
Defined in: functions/git.ts:31
Helper function to determine whether the given Git repository is up to date with the remote.
Parameters
Parameter | Type |
---|---|
gitRepositoryPath | string |
Returns
Promise
<boolean
>