diff options
Diffstat (limited to 'commands/push.go')
-rw-r--r-- | commands/push.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/commands/push.go b/commands/push.go index 416a61a1..acc3564a 100644 --- a/commands/push.go +++ b/commands/push.go @@ -25,8 +25,7 @@ func runPush(repo repository.Repo, args []string) error { // showCmd defines the "push" subcommand. var pushCmd = &Command{ - Usage: func(arg0 string) { - fmt.Printf("Usage: %s push [<remote>]\n", arg0) - }, - RunMethod: runPush, + Description: "Push bugs update to a git remote", + Usage: "[<remote>]", + RunMethod: runPush, } |