git-bug_ls.md

 1## git-bug ls
 2
 3List bugs.
 4
 5### Synopsis
 6
 7Display a summary of each bugs.
 8
 9You can pass an additional query to filter and order the list. This query can be expressed either with a simple query language, flags, a natural language full text search, or a combination of the aforementioned.
10
11```
12git-bug ls [QUERY] [flags]
13```
14
15### Examples
16
17```
18List open bugs sorted by last edition with a query:
19git bug ls status:open sort:edit-desc
20
21List closed bugs sorted by creation with flags:
22git bug ls --status closed --by creation
23
24Do a full text search of all bugs:
25git bug ls "foo bar" baz
26
27Use queries, flags, and full text search:
28git bug ls status:open --by creation "foo bar" baz
29
30```
31
32### Options
33
34```
35  -s, --status strings        Filter by status. Valid values are [open,closed]
36  -a, --author strings        Filter by author
37  -p, --participant strings   Filter by participant
38  -A, --actor strings         Filter by actor
39  -l, --label strings         Filter by label
40  -t, --title strings         Filter by title
41  -n, --no strings            Filter by absence of something. Valid values are [label]
42  -b, --by string             Sort the results by a characteristic. Valid values are [id,creation,edit] (default "creation")
43  -d, --direction string      Select the sorting direction. Valid values are [asc,desc] (default "asc")
44  -f, --format string         Select the output formatting style. Valid values are [default,plain,json,org-mode] (default "default")
45  -h, --help                  help for ls
46```
47
48### SEE ALSO
49
50* [git-bug](git-bug.md)	 - A bug tracker embedded in Git.
51