diff options
Diffstat (limited to 'doc/md')
-rw-r--r-- | doc/md/git-bug.md | 1 | ||||
-rw-r--r-- | doc/md/git-bug_select.md | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/doc/md/git-bug.md b/doc/md/git-bug.md index 6825f481..f38c3c36 100644 --- a/doc/md/git-bug.md +++ b/doc/md/git-bug.md @@ -27,6 +27,7 @@ git-bug [flags] * [git-bug ls](git-bug_ls.md) - List bugs * [git-bug pull](git-bug_pull.md) - Pull bugs update from a git remote * [git-bug push](git-bug_push.md) - Push bugs update to a git remote +* [git-bug select](git-bug_select.md) - Select a bug for implicit use in future commands * [git-bug show](git-bug_show.md) - Display the details of a bug * [git-bug status](git-bug_status.md) - Show the bug status * [git-bug termui](git-bug_termui.md) - Launch the terminal UI diff --git a/doc/md/git-bug_select.md b/doc/md/git-bug_select.md new file mode 100644 index 00000000..014ba512 --- /dev/null +++ b/doc/md/git-bug_select.md @@ -0,0 +1,31 @@ +## git-bug select + +Select a bug for implicit use in future commands + +### Synopsis + +Select a bug for implicit use in future commands + +``` +git-bug select [<id>] [flags] +``` + +### Examples + +``` +git bug select 2f15 +git bug comment +git bug status + +``` + +### Options + +``` + -h, --help help for select +``` + +### SEE ALSO + +* [git-bug](git-bug.md) - A bugtracker embedded in Git + |