(opts: { ref?: string; branch?: string; force?: boolean })
| 57 | } |
| 58 | |
| 59 | async checkout(opts: { ref?: string; branch?: string; force?: boolean }) { |
| 60 | return this.git().checkout(opts); |
| 61 | } |
| 62 | |
| 63 | async diff() { |
| 64 | return this.git().diff(); |
no test coverage detected