diff options
author | Michael Muré <batolettre@gmail.com> | 2019-03-03 15:27:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-03 15:27:29 +0100 |
commit | fe8b0659c9bc1cb074a5acfbafcabd603e533f9f (patch) | |
tree | b3d8db1596b7347fdcf39cfdc9614a3c09464b36 /doc | |
parent | 7260ca05bc3588c0572887a7d8f1b897c7fc13da (diff) | |
parent | 408654514ea813933f45d383d949611d138084e1 (diff) | |
download | git-bug-fe8b0659c9bc1cb074a5acfbafcabd603e533f9f.tar.gz |
Merge pull request #100 from sladyn98/faster_ls
`git bug ls` should be faster
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/git-bug-ls.1 | 4 | ||||
-rw-r--r-- | doc/md/git-bug_ls.md | 1 | ||||
-rw-r--r-- | doc/queries.md | 10 |
3 files changed, 15 insertions, 0 deletions
diff --git a/doc/man/git-bug-ls.1 b/doc/man/git-bug-ls.1 index eb985fd2..7b3a0aa6 100644 --- a/doc/man/git-bug-ls.1 +++ b/doc/man/git-bug-ls.1 @@ -35,6 +35,10 @@ You can pass an additional query to filter and order the list. This query can be Filter by label .PP +\fB\-t\fP, \fB\-\-title\fP=[] + Filter by title + +.PP \fB\-n\fP, \fB\-\-no\fP=[] Filter by absence of something. Valid values are [label] diff --git a/doc/md/git-bug_ls.md b/doc/md/git-bug_ls.md index 18ac5d61..9ab71884 100644 --- a/doc/md/git-bug_ls.md +++ b/doc/md/git-bug_ls.md @@ -29,6 +29,7 @@ git bug ls --status closed --by creation -s, --status strings Filter by status. Valid values are [open,closed] -a, --author strings Filter by author -l, --label strings Filter by label + -t, --title strings Filter by title -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") diff --git a/doc/queries.md b/doc/queries.md index 93135070..224b59a0 100644 --- a/doc/queries.md +++ b/doc/queries.md @@ -42,6 +42,16 @@ You can filter based on the bug's label. | `label:LABEL` | `label:prod` matches bugs with the label `prod` | | | `label:"Good first issue"` matches bugs with the label `Good first issue` | +### Filtering by title + +You can filter based on the bug's title. + +| Qualifier | Example | +| --- | --- | +| `title:TITLE` | `title:Critical` matches bugs with a title containing `Critical` | +| | `title:"Typo in string"` matches bugs with a title containing `Typo in string` | + + ### Filtering by missing feature You can filter bugs based on the absence of something. |