(repository: Repository, args: string[])
| 314 | }) |
| 315 | |
| 316 | const repositoryArgs = (repository: Repository, args: string[]) => [ |
| 317 | "--git-dir", |
| 318 | repository.gitDirectory, |
| 319 | "--work-tree", |
| 320 | repository.worktree, |
| 321 | ...args, |
| 322 | ] |
| 323 | |
| 324 | const repositoryOperation = Effect.fnUntraced(function* ( |
| 325 | operationName: OperationError["operation"], |