diff options
author | Joey Hess <joeyh@joeyh.name> | 2016-03-11 12:47:14 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-03-11 12:47:14 -0400 |
commit | 30a5b59abe5c54cc0afbe27f8da3ba8be55b3847 (patch) | |
tree | e9778046dd485eb8dd27fae3e9fde754f07dadd8 /Git/Types.hs | |
parent | b15ce31aa84ac2ae3d78e82868fb6065f15c99a4 (diff) |
extract commit parent(s)
Diffstat (limited to 'Git/Types.hs')
-rw-r--r-- | Git/Types.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Git/Types.hs b/Git/Types.hs index 4fa49be5c..44135738d 100644 --- a/Git/Types.hs +++ b/Git/Types.hs @@ -105,6 +105,7 @@ fromBlobType SymlinkBlob = 0o120000 data Commit = Commit { commitTree :: Sha + , commitParent :: [Sha] , commitAuthorMetaData :: CommitMetaData , commitCommitterMetaData :: CommitMetaData , commitMessage :: String |