(opts: {
list?: boolean;
add?: { name: string; url: string };
remove?: string;
})
| 69 | } |
| 70 | |
| 71 | async remote(opts: { |
| 72 | list?: boolean; |
| 73 | add?: { name: string; url: string }; |
| 74 | remove?: string; |
| 75 | }) { |
| 76 | return this.git().remote(opts); |
| 77 | } |
| 78 | |
| 79 | async deleteFile(path: string) { |
| 80 | return this.workspace.deleteFile(path); |