Git - add new method to the interface (#284471)

This commit is contained in:
Ladislau Szomoru
2025-12-19 15:53:53 +00:00
committed by GitHub
parent b81bd1a1d1
commit b5397ced5d

View File

@@ -261,7 +261,8 @@ export interface Repository {
diffBlobs(object1: string, object2: string): Promise<string>;
diffBetween(ref1: string, ref2: string): Promise<Change[]>;
diffBetween(ref1: string, ref2: string, path: string): Promise<string>;
diffBetweenWithStats(ref1: string, ref2: string, path?: string): Promise<DiffChange[]>;
hashObject(data: string): Promise<string>;
createBranch(name: string, checkout: boolean, ref?: string): Promise<void>;