diff options
author | Vincent Tiu <46623413+Invincibot@users.noreply.github.com> | 2020-06-18 20:37:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-18 20:37:00 +0800 |
commit | f790083fb28ac0e68acddc9d5e7a709107a70bab (patch) | |
tree | e0069915ee37ef497c79699ddef4a58c38e7219b /doc | |
parent | 7aed9870400ff7b14e044ad8b7847a411b990b1a (diff) | |
parent | 87eeba413d6b482988f4ec176326c443334217d0 (diff) | |
download | git-bug-f790083fb28ac0e68acddc9d5e7a709107a70bab.tar.gz |
Merge pull request #403 from MichaelMure/ls-dump
[ls] add support for different output formats
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/git-bug-ls.1 | 4 | ||||
-rw-r--r-- | doc/md/git-bug_ls.md | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/doc/man/git-bug-ls.1 b/doc/man/git-bug-ls.1 index 2fc1d337..5d05cfcd 100644 --- a/doc/man/git-bug-ls.1 +++ b/doc/man/git-bug-ls.1 @@ -58,6 +58,10 @@ You can pass an additional query to filter and order the list. This query can be Select the sorting direction. Valid values are [asc,desc] .PP +\fB\-f\fP, \fB\-\-format\fP="default" + Select the output formatting style. Valid values are [default, plain(text), json] + +.PP \fB\-h\fP, \fB\-\-help\fP[=false] help for ls diff --git a/doc/md/git-bug_ls.md b/doc/md/git-bug_ls.md index 085a70c9..32941e4f 100644 --- a/doc/md/git-bug_ls.md +++ b/doc/md/git-bug_ls.md @@ -35,6 +35,7 @@ git bug ls --status closed --by creation -n, --no strings Filter by absence of something. Valid values are [label] -b, --by string Sort the results by a characteristic. Valid values are [id,creation,edit] (default "creation") -d, --direction string Select the sorting direction. Valid values are [asc,desc] (default "asc") + -f, --format string Select the output formatting style. Valid values are [default, plain(text), json] (default "default") -h, --help help for ls ``` |