diff options
author | Michael Muré <batolettre@gmail.com> | 2020-11-22 22:15:51 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2024-11-03 00:51:41 +0100 |
commit | dbb9526b247f1d197ec9a524e34f6ca4c25cdd4a (patch) | |
tree | e5e4d4bbddf2d76029e3f42567cc8b500a3af0ad /doc/md/git-bug_export.md | |
parent | fb705bb8f4ab7e44900520e018518d12885e0eca (diff) | |
download | git-bug-dbb9526b247f1d197ec9a524e34f6ca4c25cdd4a.tar.gz |
commands: add a command to export bugs as raw operations (NDJSON)
Diffstat (limited to 'doc/md/git-bug_export.md')
-rw-r--r-- | doc/md/git-bug_export.md | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/doc/md/git-bug_export.md b/doc/md/git-bug_export.md new file mode 100644 index 00000000..df9c9a9b --- /dev/null +++ b/doc/md/git-bug_export.md @@ -0,0 +1,39 @@ +## git-bug export + +Export bugs as a series of operations. + +### Synopsis + +Export bugs as a series of operations. + +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 export [QUERY] [flags] +``` + +### Examples + +``` +See ls +``` + +### Options + +``` + -s, --status strings Filter by status. Valid values are [open,closed] + -a, --author strings Filter by author + -p, --participant strings Filter by participant + -A, --actor strings Filter by actor + -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") + -h, --help help for export +``` + +### SEE ALSO + +* [git-bug](git-bug.md) - A bug tracker embedded in Git. + |