()
| 34 | * @returns true if git is clean, false otherwise |
| 35 | */ |
| 36 | export async function checkIsGitClean(): Promise<boolean> { |
| 37 | const isClean = await getIsClean({ ignoreUntracked: true }) |
| 38 | return isClean |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * Checks if user has access to at least one remote environment |
no test coverage detected