git-annex/Command/Merge.hs

32 lines
647 B
Haskell
Raw Normal View History

2011-06-22 22:46:45 +00:00
{- git-annex command
-
- Copyright 2011 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.Merge where
2011-10-05 20:02:51 +00:00
import Common.Annex
2011-06-22 22:46:45 +00:00
import Command
2011-10-04 04:40:47 +00:00
import qualified Annex.Branch
2011-06-22 22:46:45 +00:00
def :: [Command]
def = [command "merge" paramNothing seek SectionMaintenance
"auto-merge remote changes into git-annex branch"]
2011-06-22 22:46:45 +00:00
seek :: [CommandSeek]
seek = [withNothing start]
start :: CommandStart
2011-06-22 22:46:45 +00:00
start = do
showStart "merge" "."
next perform
perform :: CommandPerform
perform = do
2011-10-04 04:40:47 +00:00
Annex.Branch.update
-- commit explicitly, in case no remote branches were merged
Annex.Branch.commit "update"
2011-06-22 22:46:45 +00:00
next $ return True