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  -m, --metadata strings      Filter by metadata. Example: github-url=URL
38  -p, --participant strings   Filter by participant
39  -A, --actor strings         Filter by actor
40  -l, --label strings         Filter by label
41  -t, --title strings         Filter by title
42  -n, --no strings            Filter by absence of something. Valid values are [label]
43  -b, --by string             Sort the results by a characteristic. Valid values are [id,creation,edit] (default "creation")
44  -d, --direction string      Select the sorting direction. Valid values are [asc,desc] (default "asc")
45  -f, --format string         Select the output formatting style. Valid values are [default,plain,compact,json,org-mode] (default "default")
46  -h, --help                  help for ls
47```
48
49### SEE ALSO
50
51* [git-bug](git-bug.md)	 - A bug tracker embedded in Git.
52