()
| 65 | * Returns false for local-only repos (git init with no `origin`). |
| 66 | */ |
| 67 | export async function checkHasGitRemote(): Promise<boolean> { |
| 68 | const repository = await detectCurrentRepository() |
| 69 | return repository !== null |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Checks if GitHub app is installed on a specific repository |
nothing calls this directly
no test coverage detected