From 586d56281aa49f8ab090830a18c7ec5cae45314b Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Fri, 31 Jan 2025 13:33:10 -0800 Subject: [PATCH] these comments didnt make sense here --- git.zig | 2 -- 1 file changed, 2 deletions(-) diff --git a/git.zig b/git.zig index eaa0c991d1b0d595436e04b9ce6427886d94f654..804d4e0994ab0761174b660bc00efbf34733a1b3 100644 --- a/git.zig +++ b/git.zig @@ -116,7 +116,6 @@ pub fn getObject(alloc: std.mem.Allocator, dir: std.fs.Dir, obj: Id) !string { } // TODO make this inspect .git/objects manually -// TODO make this return a Reader when we implement it ourselves // https://git-scm.com/book/en/v2/Git-Internals-Git-Objects // https://git-scm.com/book/en/v2/Git-Internals-Packfiles pub fn getObjectSize(alloc: std.mem.Allocator, dir: std.fs.Dir, obj: Id) !u64 { @@ -167,7 +166,6 @@ pub fn getType(alloc: std.mem.Allocator, dir: std.fs.Dir, obj: Id) !Tree.Object. } // TODO make this inspect .git/objects manually -// TODO make this return a Reader when we implement it ourselves // TODO make a version of this that accepts an array of sub_paths and searches all of them at once, so as to not lose spot in history when searching for many old paths // https://git-scm.com/book/en/v2/Git-Internals-Git-Objects // https://git-scm.com/book/en/v2/Git-Internals-Packfiles -- 2.54.0