makes the first argument of push required

This commit is contained in:
pete-ts 2020-03-20 21:03:58 +00:00
parent f8467a02c2
commit 3ee9e0c94f

View File

@ -725,7 +725,7 @@ push :: InputPattern
push = InputPattern
"push"
[]
[(Optional, gitUrlArg), (Optional, pathArg)]
[(Required, gitUrlArg), (Optional, pathArg)]
(P.lines
[ P.wrap
"The `push` command merges a local namespace into a remote namespace."