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 or with flags.
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
24```
25
26### Options
27
28```
29 -s, --status strings Filter by status. Valid values are [open,closed]
30 -a, --author strings Filter by author
31 -p, --participant strings Filter by participant
32 -A, --actor strings Filter by actor
33 -l, --label strings Filter by label
34 -t, --title strings Filter by title
35 -n, --no strings Filter by absence of something. Valid values are [label]
36 -b, --by string Sort the results by a characteristic. Valid values are [id,creation,edit] (default "creation")
37 -d, --direction string Select the sorting direction. Valid values are [asc,desc] (default "asc")
38 -h, --help help for ls
39```
40
41### SEE ALSO
42
43* [git-bug](git-bug.md) - A bug tracker embedded in Git.
44