({ by, cwd }: { by: number; cwd: string })
| 168 | } |
| 169 | |
| 170 | export async function deepenCloneBy({ by, cwd }: { by: number; cwd: string }) { |
| 171 | await spawn("git", ["fetch", `--deepen=${by}`], { cwd }); |
| 172 | } |
| 173 | async function getRepoRoot({ cwd }: { cwd: string }) { |
| 174 | const { stdout, code, stderr } = await spawn( |
| 175 | "git", |
no outgoing calls
no test coverage detected