split out DiffTreeItem
This makes github-backup happier when it reuses this library.
This commit is contained in:
parent
8af447c01b
commit
db27ad26bf
3 changed files with 26 additions and 11 deletions
24
Git/DiffTreeItem.hs
Normal file
24
Git/DiffTreeItem.hs
Normal file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue