aboutsummaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorSteve Moyer <smoyer1@selesy.com>2022-08-16 08:01:17 -0400
committerSteve Moyer <smoyer1@selesy.com>2022-08-16 08:01:17 -0400
commitd3f2fb0d1808ce512092707978390a42b6e2d0fd (patch)
tree84124e150b0d8b2aaef9eab056aea8a1af565b72 /commands
parentcd52872475f1b39f3fb6546606c1e78afb6c08e3 (diff)
downloadgit-bug-d3f2fb0d1808ce512092707978390a42b6e2d0fd.tar.gz
docs(847): add compact to docs and bash for ls command's format flag
Diffstat (limited to 'commands')
-rw-r--r--commands/ls.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/ls.go b/commands/ls.go
index da5ea8ce..61724f2a 100644
--- a/commands/ls.go
+++ b/commands/ls.go
@@ -91,9 +91,9 @@ git bug ls status:open --by creation "foo bar" baz
"Select the sorting direction. Valid values are [asc,desc]")
cmd.RegisterFlagCompletionFunc("direction", completeFrom([]string{"asc", "desc"}))
flags.StringVarP(&options.outputFormat, "format", "f", "default",
- "Select the output formatting style. Valid values are [default,plain,json,org-mode]")
+ "Select the output formatting style. Valid values are [default,plain,compact,json,org-mode]")
cmd.RegisterFlagCompletionFunc("format",
- completeFrom([]string{"default", "plain", "json", "org-mode"}))
+ completeFrom([]string{"default", "plain", "compact", "json", "org-mode"}))
return cmd
}