blob: 04328e8c5a45a99831a53e6fac548342567fbc98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{- git-annex command
-
- Copyright 2011 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.Merge where
import Command
import qualified Branch
import Messages
command :: [Command]
command = [repoCommand "merge" paramNothing seek
"auto-merges remote changes into the git-annex branch"]
seek :: [CommandSeek]
seek = [withNothing start]
start :: CommandStartNothing
start = do
showStart "merge" "."
next perform
perform :: CommandPerform
perform = do
Branch.update
next $ return True
|