Skip to content

Commit

Permalink
Remove show command text
Browse files Browse the repository at this point in the history
  • Loading branch information
Phani Raj committed Aug 13, 2021
1 parent 16b7b15 commit edf0710
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions internal/cmd/passwords/passwords.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
func PasswordCmd(ch *cmdutil.Helper) *cobra.Command {
cmd := &cobra.Command{
Use: "password <command>",
Short: "Create, list, show, and delete branch passwords",
Short: "Create, list, and delete branch passwords",
PersistentPreRunE: cmdutil.CheckAuthentication(ch.Config),
}

Expand All @@ -26,7 +26,6 @@ func PasswordCmd(ch *cmdutil.Helper) *cobra.Command {
cmd.AddCommand(CreateCmd(ch))
cmd.AddCommand(ListCmd(ch))
cmd.AddCommand(DeleteCmd(ch))
// cmd.AddCommand(ShowCmd(ch))

return cmd
}
Expand Down

0 comments on commit edf0710

Please sign in to comment.