module Git.FastForward.Types.MergeType
( MergeType (..),
)
where
import Git.Types.GitTypes
data MergeType
=
Upstream
|
Master
|
Other Name
deriving (MergeType -> MergeType -> Bool
(MergeType -> MergeType -> Bool)
-> (MergeType -> MergeType -> Bool) -> Eq MergeType
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: MergeType -> MergeType -> Bool
$c/= :: MergeType -> MergeType -> Bool
== :: MergeType -> MergeType -> Bool
$c== :: MergeType -> MergeType -> Bool
Eq, Int -> MergeType -> ShowS
[MergeType] -> ShowS
MergeType -> String
(Int -> MergeType -> ShowS)
-> (MergeType -> String)
-> ([MergeType] -> ShowS)
-> Show MergeType
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [MergeType] -> ShowS
$cshowList :: [MergeType] -> ShowS
show :: MergeType -> String
$cshow :: MergeType -> String
showsPrec :: Int -> MergeType -> ShowS
$cshowsPrec :: Int -> MergeType -> ShowS
Show)