diff options
Diffstat (limited to 'Command/Merge.hs')
-rw-r--r-- | Command/Merge.hs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Command/Merge.hs b/Command/Merge.hs new file mode 100644 index 000000000..04328e8c5 --- /dev/null +++ b/Command/Merge.hs @@ -0,0 +1,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 |