2011-06-22 18:46:45 -04:00
|
|
|
{- git-annex command
|
|
|
|
-
|
2015-01-21 12:50:09 -04:00
|
|
|
- Copyright 2011, 2013 Joey Hess <id@joeyh.name>
|
2011-06-22 18:46:45 -04:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Command.Merge where
|
|
|
|
|
|
|
|
import Command
|
2011-10-04 00:40:47 -04:00
|
|
|
import qualified Annex.Branch
|
2016-04-22 14:35:48 -04:00
|
|
|
import Command.Sync (prepMerge, mergeLocal, getCurrBranch, mergeConfig)
|
2011-06-22 18:46:45 -04:00
|
|
|
|
2015-07-08 12:33:27 -04:00
|
|
|
cmd :: Command
|
2015-07-08 15:08:02 -04:00
|
|
|
cmd = command "merge" SectionMaintenance
|
2015-07-08 12:33:27 -04:00
|
|
|
"automatically merge changes from remotes"
|
2015-07-08 15:08:02 -04:00
|
|
|
paramNothing (withParams seek)
|
2011-06-22 18:46:45 -04:00
|
|
|
|
2015-07-08 15:08:02 -04:00
|
|
|
seek :: CmdParams -> CommandSeek
|
2017-02-17 14:04:43 -04:00
|
|
|
seek _ = do
|
|
|
|
commandAction mergeBranch
|
|
|
|
commandAction mergeSynced
|
2011-06-22 18:46:45 -04:00
|
|
|
|
2013-07-03 15:42:56 -04:00
|
|
|
mergeBranch :: CommandStart
|
|
|
|
mergeBranch = do
|
2017-11-28 14:40:26 -04:00
|
|
|
showStart' "merge" (Just "git-annex")
|
2013-07-03 15:42:56 -04:00
|
|
|
next $ do
|
|
|
|
Annex.Branch.update
|
|
|
|
-- commit explicitly, in case no remote branches were merged
|
|
|
|
Annex.Branch.commit "update"
|
|
|
|
next $ return True
|
2011-06-22 18:46:45 -04:00
|
|
|
|
2013-07-03 15:42:56 -04:00
|
|
|
mergeSynced :: CommandStart
|
|
|
|
mergeSynced = do
|
2013-09-13 14:55:55 -04:00
|
|
|
prepMerge
|
2017-06-01 12:46:36 -04:00
|
|
|
mergeLocal mergeConfig def =<< join getCurrBranch
|