indent
This commit is contained in:
parent
1d628ff238
commit
40df205881
1 changed files with 6 additions and 6 deletions
12
Commands.hs
12
Commands.hs
|
@ -21,12 +21,12 @@ import Core
|
|||
|
||||
options :: [OptDescr (String -> Annex ())]
|
||||
options =
|
||||
[ Option ['a'] ["add"] (NoArg addCmd) "add files to annex"
|
||||
, Option ['p'] ["push"] (NoArg pushCmd) "push annex to repos"
|
||||
, Option ['P'] ["pull"] (NoArg pullCmd) "pull annex from repos"
|
||||
, Option ['w'] ["want"] (NoArg wantCmd) "request file contents"
|
||||
, Option ['g'] ["get"] (NoArg getCmd) "transfer file contents"
|
||||
, Option ['d'] ["drop"] (NoArg dropCmd) "indicate file contents not needed"
|
||||
[ Option ['a'] ["add"] (NoArg addCmd) "add files to annex"
|
||||
, Option ['p'] ["push"] (NoArg pushCmd) "push annex to repos"
|
||||
, Option ['P'] ["pull"] (NoArg pullCmd) "pull annex from repos"
|
||||
, Option ['w'] ["want"] (NoArg wantCmd) "request file contents"
|
||||
, Option ['g'] ["get"] (NoArg getCmd) "transfer file contents"
|
||||
, Option ['d'] ["drop"] (NoArg dropCmd) "indicate file contents not needed"
|
||||
, Option ['u'] ["unannex"] (NoArg unannexCmd) "undo --add"
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in a new issue