diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-26 16:49:00 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-26 16:49:00 +0200 |
commit | 04ddeef90f8dfb541e1b87ace1cb817679a488df (patch) | |
tree | 1a5929b845b796866c8637ae776b9d8dffc0ecb5 /doc | |
parent | 18f5c1632f51b7f7172441651b13ac267b421df2 (diff) | |
download | git-bug-04ddeef90f8dfb541e1b87ace1cb817679a488df.tar.gz |
commands: add a "deselect" command to deselect a previously selected bug
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/git-bug-deselect.1 | 44 | ||||
-rw-r--r-- | doc/man/git-bug.1 | 2 | ||||
-rw-r--r-- | doc/md/git-bug.md | 1 | ||||
-rw-r--r-- | doc/md/git-bug_deselect.md | 32 |
4 files changed, 78 insertions, 1 deletions
diff --git a/doc/man/git-bug-deselect.1 b/doc/man/git-bug-deselect.1 new file mode 100644 index 00000000..430c1c8f --- /dev/null +++ b/doc/man/git-bug-deselect.1 @@ -0,0 +1,44 @@ +.TH "GIT-BUG" "1" "Sep 2018" "Generated from git-bug's source code" "" +.nh +.ad l + + +.SH NAME +.PP +git\-bug\-deselect \- Clear the implicitly selected bug + + +.SH SYNOPSIS +.PP +\fBgit\-bug deselect [flags]\fP + + +.SH DESCRIPTION +.PP +Clear the implicitly selected bug + + +.SH OPTIONS +.PP +\fB\-h\fP, \fB\-\-help\fP[=false] + help for deselect + + +.SH EXAMPLE +.PP +.RS + +.nf +git bug select 2f15 +git bug comment +git bug status +git bug deselect + + +.fi +.RE + + +.SH SEE ALSO +.PP +\fBgit\-bug(1)\fP diff --git a/doc/man/git-bug.1 b/doc/man/git-bug.1 index 0a15711a..56ab25b6 100644 --- a/doc/man/git-bug.1 +++ b/doc/man/git-bug.1 @@ -29,4 +29,4 @@ It use the same internal storage so it doesn't pollute your project. As you woul .SH SEE ALSO .PP -\fBgit\-bug\-add(1)\fP, \fBgit\-bug\-bridge(1)\fP, \fBgit\-bug\-commands(1)\fP, \fBgit\-bug\-comment(1)\fP, \fBgit\-bug\-label(1)\fP, \fBgit\-bug\-ls(1)\fP, \fBgit\-bug\-ls\-label(1)\fP, \fBgit\-bug\-pull(1)\fP, \fBgit\-bug\-push(1)\fP, \fBgit\-bug\-select(1)\fP, \fBgit\-bug\-show(1)\fP, \fBgit\-bug\-status(1)\fP, \fBgit\-bug\-termui(1)\fP, \fBgit\-bug\-title(1)\fP, \fBgit\-bug\-webui(1)\fP +\fBgit\-bug\-add(1)\fP, \fBgit\-bug\-bridge(1)\fP, \fBgit\-bug\-commands(1)\fP, \fBgit\-bug\-comment(1)\fP, \fBgit\-bug\-deselect(1)\fP, \fBgit\-bug\-label(1)\fP, \fBgit\-bug\-ls(1)\fP, \fBgit\-bug\-ls\-label(1)\fP, \fBgit\-bug\-pull(1)\fP, \fBgit\-bug\-push(1)\fP, \fBgit\-bug\-select(1)\fP, \fBgit\-bug\-show(1)\fP, \fBgit\-bug\-status(1)\fP, \fBgit\-bug\-termui(1)\fP, \fBgit\-bug\-title(1)\fP, \fBgit\-bug\-webui(1)\fP diff --git a/doc/md/git-bug.md b/doc/md/git-bug.md index af4859ce..a7fd865f 100644 --- a/doc/md/git-bug.md +++ b/doc/md/git-bug.md @@ -24,6 +24,7 @@ git-bug [flags] * [git-bug bridge](git-bug_bridge.md) - Configure and use bridges to other bug trackers * [git-bug commands](git-bug_commands.md) - Display available commands * [git-bug comment](git-bug_comment.md) - Display or add comments +* [git-bug deselect](git-bug_deselect.md) - Clear the implicitly selected bug * [git-bug label](git-bug_label.md) - Display, add or remove labels * [git-bug ls](git-bug_ls.md) - List bugs * [git-bug ls-label](git-bug_ls-label.md) - List valid labels diff --git a/doc/md/git-bug_deselect.md b/doc/md/git-bug_deselect.md new file mode 100644 index 00000000..dbc86dc9 --- /dev/null +++ b/doc/md/git-bug_deselect.md @@ -0,0 +1,32 @@ +## git-bug deselect + +Clear the implicitly selected bug + +### Synopsis + +Clear the implicitly selected bug + +``` +git-bug deselect [flags] +``` + +### Examples + +``` +git bug select 2f15 +git bug comment +git bug status +git bug deselect + +``` + +### Options + +``` + -h, --help help for deselect +``` + +### SEE ALSO + +* [git-bug](git-bug.md) - A bug tracker embedded in Git + |