9 lines
307 B
TypeScript
9 lines
307 B
TypeScript
import { findGitRoot } from '../git.js'
|
|
|
|
// Note: This is used to check git repo status synchronously
|
|
// Uses findGitRoot which walks the filesystem (no subprocess)
|
|
// Prefer `dirIsInGitRepo()` for async checks
|
|
export function projectIsInGitRepo(cwd: string): boolean {
|
|
return findGitRoot(cwd) !== null
|
|
}
|