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 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  -l, --label strings      Filter by label
32  -n, --no strings         Filter by absence of something. Valid values are [label]
33  -b, --by string          Sort the results by a characteristic. Valid values are [id,creation,edit] (default "creation")
34  -d, --direction string   Select the sorting direction. Valid values are [asc,desc] (default "asc")
35  -h, --help               help for ls
36```
37
38### SEE ALSO
39
40* [git-bug](git-bug.md)	 - A bugtracker embedded in Git
41