summaryrefslogtreecommitdiff
path: root/Git/DiffTreeItem.hs
blob: 090ad3e008944cf0140ae322a734031fced85dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{- git diff-tree item
 -
 - Copyright 2012 Joey Hess <id@joeyh.name>
 -
 - Licensed under the GNU AGPL version 3 or higher.
 -}

module Git.DiffTreeItem (
	DiffTreeItem(..),
) where

import System.Posix.Types
import qualified Data.ByteString as S

import Git.FilePath
import Git.Types

data DiffTreeItem = DiffTreeItem
	{ srcmode :: FileMode
	, dstmode :: FileMode
	, srcsha :: Sha -- null sha if file was added
	, dstsha :: Sha -- null sha if file was deleted
	, status :: S.ByteString
	, file :: TopFilePath
	} deriving Show