diff options
author | Joey Hess <joeyh@joeyh.name> | 2016-02-29 15:57:47 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-02-29 15:57:47 -0400 |
commit | 6d4ab4dc7389e2184d32962b751268125dfa56ae (patch) | |
tree | 9d3f29e122aa92e82d499580b4ffb84be8619eba /Command/Sync.hs | |
parent | 453ba048af869ed731e54f39b8b9db7d6859510a (diff) |
make assistant aware of adjusted branches when merging
Diffstat (limited to 'Command/Sync.hs')
-rw-r--r-- | Command/Sync.hs | 32 |
1 files changed, 19 insertions, 13 deletions
diff --git a/Command/Sync.hs b/Command/Sync.hs index b362d7c1e..0d0358af9 100644 --- a/Command/Sync.hs +++ b/Command/Sync.hs @@ -10,6 +10,7 @@ module Command.Sync ( cmd, CurrBranch, getCurrBranch, + merge, prepMerge, mergeLocal, mergeRemote, @@ -165,6 +166,12 @@ getCurrBranch = do prepMerge :: Annex () prepMerge = Annex.changeDirectory =<< fromRepo Git.repoPath +merge :: CurrBranch -> Git.Branch.CommitMode -> Git.Branch -> Annex Bool +merge (Just b, Just adj) commitmode tomerge = + updateAdjustedBranch tomerge (b, adj) commitmode +merge (b, _) commitmode tomerge = + autoMergeFrom tomerge b commitmode + syncBranch :: Git.Ref -> Git.Ref syncBranch = Git.Ref.under "refs/heads/synced" . fromDirectBranch @@ -236,8 +243,7 @@ commitStaged commitmode commitmessage = do return True mergeLocal :: CurrBranch -> CommandStart -mergeLocal (Nothing, _) = stop -mergeLocal (Just branch, madj) = go =<< needmerge +mergeLocal currbranch@(Just branch, _) = go =<< needmerge where syncbranch = syncBranch branch needmerge = ifM isBareRepo @@ -250,9 +256,9 @@ mergeLocal (Just branch, madj) = go =<< needmerge go False = stop go True = do showStart "merge" $ Git.Ref.describe syncbranch - next $ next $ case madj of - Nothing -> autoMergeFrom syncbranch (Just branch) Git.Branch.ManualCommit - Just adj -> updateAdjustedBranch adj branch syncbranch + next $ next $ + merge currbranch Git.Branch.ManualCommit syncbranch +mergeLocal (Nothing, _) = stop pushLocal :: CurrBranch -> CommandStart pushLocal b = do @@ -298,19 +304,19 @@ pullRemote o remote branch = stopUnless (pure $ pullOption o) $ do - while the synced/master may have changes that some - other remote synced to this remote. So, merge them both. -} mergeRemote :: Remote -> CurrBranch -> CommandCleanup -mergeRemote remote b = ifM isBareRepo +mergeRemote remote currbranch = ifM isBareRepo ( return True - , case b of + , case currbranch of (Nothing, _) -> do branch <- inRepo Git.Branch.currentUnsafe - and <$> mapM (merge Nothing Nothing) (branchlist branch) - (Just currbranch, madj) -> do - inRepo $ updateBranch $ syncBranch currbranch - and <$> (mapM (merge (Just currbranch) madj) =<< tomerge (branchlist (Just currbranch))) + mergelisted (pure (branchlist branch)) + (Just branch, _) -> do + inRepo $ updateBranch $ syncBranch branch + mergelisted (tomerge (branchlist (Just branch))) ) where - merge (Just origbranch) (Just adj) br = updateAdjustedBranch adj origbranch br - merge currbranch _ br = autoMergeFrom (remoteBranch remote br) currbranch Git.Branch.ManualCommit + mergelisted getlist = and <$> + (mapM (merge currbranch Git.Branch.ManualCommit) =<< getlist) tomerge = filterM (changed remote) branchlist Nothing = [] branchlist (Just branch) = [branch, syncBranch branch] |