diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-19 21:50:03 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-19 21:51:16 +0200 |
commit | d71411f9179d2930e791c4f9d3a7accef9b80eb2 (patch) | |
tree | 9d84e325875f25768f3e60b50f8060d8312cc5ce /doc | |
parent | d57e2fdd1977b9a5d4984d7146e66349001893b3 (diff) | |
download | git-bug-d71411f9179d2930e791c4f9d3a7accef9b80eb2.tar.gz |
commands: ls now accept queries without quote
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/git-bug-ls.1 | 2 | ||||
-rw-r--r-- | doc/md/git-bug_ls.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/man/git-bug-ls.1 b/doc/man/git-bug-ls.1 index c5f989a8..5f799c30 100644 --- a/doc/man/git-bug-ls.1 +++ b/doc/man/git-bug-ls.1 @@ -57,7 +57,7 @@ You can pass an additional query to filter and order the list. This query can be .nf List open bugs sorted by last edition with a query: -git bug ls "status:open sort:edit\-desc" +git bug ls status:open sort:edit\-desc List closed bugs sorted by creation with flags: git bug ls \-\-status closed \-\-by creation diff --git a/doc/md/git-bug_ls.md b/doc/md/git-bug_ls.md index 53f9b7f4..a1ebad20 100644 --- a/doc/md/git-bug_ls.md +++ b/doc/md/git-bug_ls.md @@ -16,7 +16,7 @@ git-bug ls [<query>] [flags] ``` List open bugs sorted by last edition with a query: -git bug ls "status:open sort:edit-desc" +git bug ls status:open sort:edit-desc List closed bugs sorted by creation with flags: git bug ls --status closed --by creation |