Name
bite-bugzilla-get - get bugs
Synopsis
- bite bugzilla <get|g> [<options>] <ids>
-
Get bugs.
- bite bugzilla <get|g> [-h|--help]
-
Output help information.
Description
The get
command fetches and outputs data related to the specified bugs. In
addition to bug fields this includes the attachments, comments, and changes of
the bug. See the options below to alter the output by skipping data types.
Note that this command isn’t meant for returning individual field values,
instead use the search
command similar to the following:
bite bugzilla search --id 10 -f summary -s @all
Global Options
- -v, --verbose
-
Increase logging verbosity.
Verbosity levels in increasing order are error, warning, info, debug, and trace. The default level is warning causing errors and warnings to be shown. Each
-v/--verbose
option specified increases the level up to the maximum sobite -vv …
runs the given subcommand at the debug level.WarningRunning at the trace level leaks authentication data as it outputs raw response structures including URLs which often include injected login parameters for authenticated sessions. - -q, --quiet
-
Decrease logging verbosity.
- -h, --help
-
Print help output and exit.
Get options
- -A, --no-attachments
-
Disable attachments.
- -C, --no-comments
-
Disable comments.
- -H, --no-history
-
Disable history.
- -b, --browser
-
Open in a browser.
This uses
$BROWSER
to open URLs, falling back toxdg-open
if undefined.
Arguments
- <ids>
-
IDs or aliases of bugs to fetch.
Taken from standard input when
-
.
Examples
bite bugzilla get 123
test
and only output field values:bite bugzilla get test -ACH
bite bugzilla search -c 1d -f id | bite bugzilla get -
bite bugzilla search -c 1h -f id | bite bugzilla get -b -