diff options
Diffstat (limited to 'internal/testgit/commit.go')
| -rw-r--r-- | internal/testgit/commit.go | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/internal/testgit/commit.go b/internal/testgit/commit.go index 883db312..b1838e71 100644 --- a/internal/testgit/commit.go +++ b/internal/testgit/commit.go @@ -8,18 +8,11 @@ import ( "lindenii.org/go/furgit/object/id" ) -// CommitTreeIdentity configures an author or committer identity -// for [Repo.CommitTree]. -type CommitTreeIdentity struct { - Name string - Email string -} - // CommitTreeOptions configures [Repo.CommitTree]. type CommitTreeOptions struct { Message string - Author CommitTreeIdentity - Committer CommitTreeIdentity + Author Identity + Committer Identity AuthorDate string CommitterDate string } |
