(pathInsideRepo: string)
| 155 | } |
| 156 | |
| 157 | async openRepository(pathInsideRepo: string): Promise<RepoLease> { |
| 158 | this.assertOpen(); |
| 159 | const identity = await this.resolveIdentity(pathInsideRepo); |
| 160 | return this.acquireRepository(identity); |
| 161 | } |
| 162 | |
| 163 | async openWorktree(worktreePath: string): Promise<WorktreeLease> { |
| 164 | this.assertOpen(); |
nothing calls this directly
no test coverage detected