Adding support for removing file from git index

Signed-off-by: manuel.falcon <manuel.falcon@glovoapp.com>
This commit is contained in:
manuel.falcon
2023-12-23 11:28:51 +01:00
parent 3b24eaecbc
commit 1c9567d735
+1
View File
@@ -417,6 +417,7 @@ export class Git {
force?: boolean;
}): Promise<PushResult>;
readCommit(options: { dir: string; sha: string }): Promise<ReadCommitResult>;
remove(options: { dir: string; filepath: string }): Promise<void>;
resolveRef(options: { dir: string; ref: string }): Promise<string>;
}