From 6e2f48e24b0c003b4c8547ff88fc1a7f890a1c1e Mon Sep 17 00:00:00 2001 From: Rory& Date: Thu, 11 Dec 2025 18:54:56 +0100 Subject: read indexes and packs correctly --- LibGit/Interfaces/IRepoSource.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'LibGit/Interfaces') diff --git a/LibGit/Interfaces/IRepoSource.cs b/LibGit/Interfaces/IRepoSource.cs index e276f60..2a29feb 100644 --- a/LibGit/Interfaces/IRepoSource.cs +++ b/LibGit/Interfaces/IRepoSource.cs @@ -3,7 +3,7 @@ namespace LibGit.Interfaces; public interface IRepoSource { public string BasePath { get; set; } + public Task FileExists(string path); public Task GetFileStream(string path); - public Task GetObjectStreamById(string objectId) => GetFileStream(Path.Join("objects", objectId[..2], objectId[2..])); } \ No newline at end of file -- cgit 1.5.1