summary refs log tree commit diff
path: root/LibGitTest/Test1.cs
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-12-11 18:54:56 +0100
committerRory& <root@rory.gay>2025-12-11 18:54:56 +0100
commit6e2f48e24b0c003b4c8547ff88fc1a7f890a1c1e (patch)
tree7aac58a3a1045bde51e989cb0a1ab1c26c28e68f /LibGitTest/Test1.cs
parentnet10 (diff)
downloadGitTools-6e2f48e24b0c003b4c8547ff88fc1a7f890a1c1e.tar.xz
read indexes and packs correctly
Diffstat (limited to 'LibGitTest/Test1.cs')
-rw-r--r--LibGitTest/Test1.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/LibGitTest/Test1.cs b/LibGitTest/Test1.cs

index ac88cf9..ebd6f7e 100644 --- a/LibGitTest/Test1.cs +++ b/LibGitTest/Test1.cs
@@ -1,3 +1,4 @@ +using System.Runtime.CompilerServices; using LibGit; namespace LibGitTest; @@ -6,7 +7,8 @@ public class Test1 { public static async Task Run() { - var repo = new GitRepo(new FileRepoSource(@"/home/root@Rory/tmpgit/MatrixRoomUtils.git")); + Console.WriteLine("Test1 running"); + var repo = new GitRepo(new FileRepoSource(@"/home/Rory/git/matrix/MatrixRoomUtils.git")); // var repo = new GitRepo(new WebRepoSource("https://git.rory.gay/MatrixRoomUtils.git/")); var commit = await repo.GetCommit("HEAD");