Merge pull request #162 from github/gh-help-lines

Avoid long first line of gh help
This commit is contained in:
Nate Smith 2019-12-16 10:53:00 -06:00 committed by GitHub
commit 82fbbb28e8

View file

@ -43,7 +43,10 @@ type FlagError struct {
var RootCmd = &cobra.Command{
Use: "gh",
Short: "GitHub CLI",
Long: `Work seamlessly with GitHub from the command line. GitHub CLI is in early stages of development, and we'd love to hear your feedback at https://forms.gle/pBt3kujJi7nXZmcM6`,
Long: `Work seamlessly with GitHub from the command line.
GitHub CLI is in early stages of development, and we'd love to hear your
feedback at <https://forms.gle/pBt3kujJi7nXZmcM6>`,
SilenceErrors: true,
SilenceUsage: true,