aboutsummaryrefslogtreecommitdiff
path: root/object/commit/commit.go
diff options
context:
space:
mode:
Diffstat (limited to 'object/commit/commit.go')
-rw-r--r--object/commit/commit.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/object/commit/commit.go b/object/commit/commit.go
index 6a89bce9..a8a247bf 100644
--- a/object/commit/commit.go
+++ b/object/commit/commit.go
@@ -14,12 +14,12 @@ type Commit struct {
Author signature.Signature
Committer signature.Signature
Message []byte
- ChangeID string
+ ChangeID []byte
ExtraHeaders []ExtraHeader
}
// ExtraHeader represents an extra header in a Git object.
type ExtraHeader struct {
- Key string
+ Key []byte
Value []byte
}