From e7c934b05c89875de28024a0ab8a2d74c35d0ca1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Thu, 11 Jun 2020 16:44:27 +0200 Subject: [PATCH] Tweak `gh help config` output --- command/config.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/command/config.go b/command/config.go index a4511061e..e27580bd9 100644 --- a/command/config.go +++ b/command/config.go @@ -2,6 +2,7 @@ package command import ( "fmt" + "github.com/spf13/cobra" ) @@ -21,11 +22,11 @@ func init() { var configCmd = &cobra.Command{ Use: "config", - Short: "Set and get gh settings", - Long: `Get and set key/value strings. + Short: "Manage configuration for gh", + Long: `Display or change configuration settings for gh. Current respected settings: -- git_protocol: https or ssh. Default is https. +- git_protocol: "https" or "ssh". Default is "https". - editor: if unset, defaults to environment variables. `, }