git-annex/Command/Merge.hs

38 lines
838 B
Haskell
Raw Normal View History

2011-06-22 22:46:45 +00:00
{- git-annex command
-
- Copyright 2011, 2013 Joey Hess <id@joeyh.name>
2011-06-22 22:46:45 +00:00
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.Merge where
import Command
2011-10-04 04:40:47 +00:00
import qualified Annex.Branch
import qualified Git.Branch
import Command.Sync (prepMerge, mergeLocal)
2011-06-22 22:46:45 +00:00
cmd :: Command
cmd = command "merge" SectionMaintenance
"automatically merge changes from remotes"
paramNothing (withParams seek)
2011-06-22 22:46:45 +00:00
seek :: CmdParams -> CommandSeek
seek ps = do
withNothing mergeBranch ps
withNothing mergeSynced ps
2011-06-22 22:46:45 +00:00
mergeBranch :: CommandStart
mergeBranch = do
showStart "merge" "git-annex"
next $ do
Annex.Branch.update
-- commit explicitly, in case no remote branches were merged
Annex.Branch.commit "update"
next $ return True
2011-06-22 22:46:45 +00:00
mergeSynced :: CommandStart
mergeSynced = do
prepMerge
mergeLocal =<< inRepo Git.Branch.current