aboutsummaryrefslogtreecommitdiffstats
path: root/doc/md
diff options
context:
space:
mode:
authorVincent Tiu <46623413+Invincibot@users.noreply.github.com>2020-11-17 21:35:31 +0800
committerGitHub <noreply@github.com>2020-11-17 21:35:31 +0800
commit466b5183c371b4ac7f905e33c4f8f36ddb7db9ff (patch)
tree1b477423060292af296b32971cda1ca0045e0c0d /doc/md
parent902997f53771babb2f9ea1bb6288c2ec295c4c9e (diff)
parentee3841155e5c58b85408f29a8d44630da5de63f7 (diff)
downloadgit-bug-466b5183c371b4ac7f905e33c4f8f36ddb7db9ff.tar.gz
Merge pull request #446 from MichaelMure/bug-fts
bug full text search
Diffstat (limited to 'doc/md')
-rw-r--r--doc/md/git-bug_ls.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/md/git-bug_ls.md b/doc/md/git-bug_ls.md
index e2721c72..df54224f 100644
--- a/doc/md/git-bug_ls.md
+++ b/doc/md/git-bug_ls.md
@@ -6,7 +6,7 @@ List bugs.
Display a summary of each bugs.
-You 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.
+You 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.
```
git-bug ls [QUERY] [flags]
@@ -21,6 +21,12 @@ git bug ls status:open sort:edit-desc
List closed bugs sorted by creation with flags:
git bug ls --status closed --by creation
+Do a full text search of all bugs:
+git bug ls "foo bar" baz
+
+Use queries, flags, and full text search:
+git bug ls status:open --by creation "foo bar" baz
+
```
### Options