(opts?: { name?: string; list?: boolean; delete?: string })
| 53 | } |
| 54 | |
| 55 | async branch(opts?: { name?: string; list?: boolean; delete?: string }) { |
| 56 | return this.git().branch(opts); |
| 57 | } |
| 58 | |
| 59 | async checkout(opts: { ref?: string; branch?: string; force?: boolean }) { |
| 60 | return this.git().checkout(opts); |
no test coverage detected