From a041d523de389b65b98a5373a8034041db2a8d83 Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Thu, 2 Apr 2026 06:23:30 +0000 Subject: *: Remove --- internal/testgit/repo_commit_tree.go | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 internal/testgit/repo_commit_tree.go (limited to 'internal/testgit/repo_commit_tree.go') diff --git a/internal/testgit/repo_commit_tree.go b/internal/testgit/repo_commit_tree.go deleted file mode 100644 index 3a5a75ac..00000000 --- a/internal/testgit/repo_commit_tree.go +++ /dev/null @@ -1,29 +0,0 @@ -package testgit - -import ( - "testing" - - objectid "codeberg.org/lindenii/furgit/object/id" -) - -// CommitTree creates a commit from a tree and message, optionally with parents. -func (testRepo *TestRepo) CommitTree(tb testing.TB, tree objectid.ObjectID, message string, parents ...objectid.ObjectID) objectid.ObjectID { - tb.Helper() - - args := make([]string, 0, 2+2*len(parents)+2) - - args = append(args, "commit-tree", tree.String()) - for _, p := range parents { - args = append(args, "-p", p.String()) - } - - args = append(args, "-m", message) - hex := testRepo.Run(tb, args...) - - id, err := objectid.ParseHex(testRepo.algo, hex) - if err != nil { - tb.Fatalf("parse commit-tree output %q: %v", hex, err) - } - - return id -} -- cgit v1.3.1-10-gc9f91