diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-18 13:17:39 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-18 13:17:39 +0200 |
commit | 5f9fd2a2d95bd23e5d6972ec822bf1fea3077804 (patch) | |
tree | 9c6b0a9ff684179916207689c6b5c808efb67eb7 /doc/md | |
parent | 0d5998eb67f9bbf146e15a127a2d6a89aa14eab9 (diff) | |
download | git-bug-5f9fd2a2d95bd23e5d6972ec822bf1fea3077804.tar.gz git-bug-5f9fd2a2d95bd23e5d6972ec822bf1fea3077804.zip |
commands: add a "select" command to select a bug for future implicit use
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 6825f4810..f38c3c360 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 000000000..014ba512f --- /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 + |