aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMike Goldin <mike.goldin@protonmail.ch>2020-11-17 08:09:35 -0500
committerMike Goldin <mike.goldin@protonmail.ch>2020-11-17 08:32:19 -0500
commitee3841155e5c58b85408f29a8d44630da5de63f7 (patch)
tree1b477423060292af296b32971cda1ca0045e0c0d /doc
parentb494e06804dca860138da843e0c44912f692a280 (diff)
downloadgit-bug-ee3841155e5c58b85408f29a8d44630da5de63f7.tar.gz
Update docs for full text search
Diffstat (limited to 'doc')
-rw-r--r--doc/man/git-bug-ls.18
-rw-r--r--doc/md/git-bug_ls.md8
2 files changed, 14 insertions, 2 deletions
diff --git a/doc/man/git-bug-ls.1 b/doc/man/git-bug-ls.1
index b77bc969..a0e60db7 100644
--- a/doc/man/git-bug-ls.1
+++ b/doc/man/git-bug-ls.1
@@ -16,7 +16,7 @@ git\-bug\-ls \- List bugs.
Display a summary of each bugs.
.PP
-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.
.SH OPTIONS
@@ -76,6 +76,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
+
.fi
.RE
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