diff options
author | 2014-12-22 15:32:51 -0400 | |
---|---|---|
committer | 2014-12-22 15:32:51 -0400 | |
commit | c80b92b61f67ade14eb54633140ff046b285469c (patch) | |
tree | 31b2b1b65492579de287b52b22794b69229fc5f6 /Git/DiffTreeItem.hs | |
parent | d54ea42de6cbd297d398d4e6f1d27f507a7de5d9 (diff) |
split out DiffTreeItem
This makes github-backup happier when it reuses this library.
Diffstat (limited to 'Git/DiffTreeItem.hs')
-rw-r--r-- | Git/DiffTreeItem.hs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Git/DiffTreeItem.hs b/Git/DiffTreeItem.hs new file mode 100644 index 000000000..2389b698a --- /dev/null +++ b/Git/DiffTreeItem.hs @@ -0,0 +1,24 @@ +{- git diff-tree item + - + - Copyright 2012 Joey Hess <joey@kitenet.net> + - + - Licensed under the GNU GPL version 3 or higher. + -} + +module Git.DiffTreeItem ( + DiffTreeItem(..), +) where + +import System.Posix.Types + +import Git.FilePath +import Git.Types + +data DiffTreeItem = DiffTreeItem + { srcmode :: FileMode + , dstmode :: FileMode + , srcsha :: Sha -- nullSha if file was added + , dstsha :: Sha -- nullSha if file was deleted + , status :: String + , file :: TopFilePath + } deriving Show |