root_out_golden.txt

 1git-bug is a bug tracker embedded in git.
 2
 3git-bug use git objects to store the bug tracking separated from the files
 4history. As bugs are regular git objects, they can be pushed and pulled from/to
 5the same git remote you are already using to collaborate with other people.
 6
 7Usage:
 8  git-bug [flags]
 9  git-bug [command]
10
11Available Commands:
12  add         Create a new bug.
13  bridge      Configure and use bridges to other bug trackers.
14  commands    Display available commands.
15  comment     Display or add comments to a bug.
16  completion  Generate the autocompletion script for the specified shell
17  deselect    Clear the implicitly selected bug.
18  help        Help about any command
19  label       Display, add or remove labels to/from a bug.
20  ls          List bugs.
21  ls-id       List bug identifiers.
22  ls-label    List valid labels.
23  pull        Pull bugs update from a git remote.
24  push        Push bugs update to a git remote.
25  rm          Remove an existing bug.
26  select      Select a bug for implicit use in future commands.
27  show        Display the details of a bug.
28  status      Display or change a bug status.
29  termui      Launch the terminal UI.
30  title       Display or change a title of a bug.
31  user        Display or change the user identity.
32  version     Show git-bug version information.
33  webui       Launch the web UI.
34
35Flags:
36  -h, --help   help for git-bug
37
38Use "git-bug [command] --help" for more information about a command.