From ab2540652d8c00496329f06e41451023b18cc660 Mon Sep 17 00:00:00 2001 From: Adam Stiles Date: Fri, 12 Jun 2020 07:55:37 -0700 Subject: [PATCH] Direct users to https url for manual --- command/help.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/help.go b/command/help.go index e243577a469..b776d23f19b 100644 --- a/command/help.go +++ b/command/help.go @@ -93,7 +93,7 @@ func rootHelpFunc(command *cobra.Command, args []string) { } helpEntries = append(helpEntries, helpEntry{"LEARN MORE", ` Use "gh --help" for more information about a command. -Read the manual at http://cli.github.com/manual`}) +Read the manual at https://cli.github.com/manual`}) if _, ok := command.Annotations["help:feedback"]; ok { helpEntries = append(helpEntries, helpEntry{"FEEDBACK", command.Annotations["help:feedback"]}) }