2014-12-22 19:32:51 +00:00
|
|
|
{- git diff-tree item
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2012 Joey Hess <id@joeyh.name>
|
2014-12-22 19:32:51 +00:00
|
|
|
-
|
|
|
|
- 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
|