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