add renameRemote

This commit is contained in:
João Moreno
2020-04-23 14:37:39 +02:00
parent 199d3d5e7b
commit 888f89b40a
4 changed files with 15 additions and 1 deletions

View File

@@ -179,6 +179,7 @@ export interface Repository {
addRemote(name: string, url: string): Promise<void>;
removeRemote(name: string): Promise<void>;
renameRemote(name: string, newName: string): Promise<void>;
fetch(remote?: string, ref?: string, depth?: number): Promise<void>;
pull(unshallow?: boolean): Promise<void>;