improve wording
This commit is contained in:
parent
4400f65967
commit
9d85baa314
2 changed files with 12 additions and 10 deletions
|
@ -31,14 +31,14 @@ seek args = do
|
|||
!branch <- currentBranch
|
||||
let syncbranch = Git.Ref.under "refs/heads/synced/" branch
|
||||
remotes <- syncRemotes syncbranch args
|
||||
return $
|
||||
[ commit
|
||||
, mergeLocal branch
|
||||
] ++
|
||||
[ update remote branch | remote <- remotes ] ++
|
||||
[ mergeAnnex ] ++
|
||||
[ pushLocal syncbranch ] ++
|
||||
[ pushRemote remote branch syncbranch | remote <- remotes ]
|
||||
return $ concat $
|
||||
[ [ commit ]
|
||||
, [ mergeLocal branch ]
|
||||
, [ update remote branch | remote <- remotes ]
|
||||
, [ mergeAnnex ]
|
||||
, [ pushLocal syncbranch ]
|
||||
, [ pushRemote remote branch syncbranch | remote <- remotes ]
|
||||
]
|
||||
|
||||
syncRemotes :: Git.Ref -> [String] -> Annex [Remote.Remote Annex]
|
||||
syncRemotes branch [] = defaultSyncRemotes branch
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue