diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-16 14:29:14 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-16 14:29:14 +0200 |
commit | dad61892cea320cd28c23c73fdf65a90404c6099 (patch) | |
tree | da964d3af2001027ef880d93cf5914ecd40984e8 /doc/md | |
parent | a846fb96de587afdd9b3ea37bdb9731d77e44863 (diff) | |
download | git-bug-dad61892cea320cd28c23c73fdf65a90404c6099.tar.gz |
commands: migrate the open/close commands under the "status" command
Diffstat (limited to 'doc/md')
-rw-r--r-- | doc/md/git-bug.md | 2 | ||||
-rw-r--r-- | doc/md/git-bug_status.md | 2 | ||||
-rw-r--r-- | doc/md/git-bug_status_close.md | 22 | ||||
-rw-r--r-- | doc/md/git-bug_status_open.md | 22 |
4 files changed, 46 insertions, 2 deletions
diff --git a/doc/md/git-bug.md b/doc/md/git-bug.md index 33ab48ae..6a102c20 100644 --- a/doc/md/git-bug.md +++ b/doc/md/git-bug.md @@ -21,12 +21,10 @@ git-bug [flags] ### SEE ALSO * [git-bug add](git-bug_add.md) - Create a new bug -* [git-bug close](git-bug_close.md) - Mark the bug as closed * [git-bug commands](git-bug_commands.md) - Display available commands * [git-bug comment](git-bug_comment.md) - Show a bug's comments * [git-bug label](git-bug_label.md) - Manipulate bug's label * [git-bug ls](git-bug_ls.md) - List bugs -* [git-bug open](git-bug_open.md) - Mark the bug as open * [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 show](git-bug_show.md) - Display the details of a bug diff --git a/doc/md/git-bug_status.md b/doc/md/git-bug_status.md index a4af6f4d..3814cc85 100644 --- a/doc/md/git-bug_status.md +++ b/doc/md/git-bug_status.md @@ -19,4 +19,6 @@ git-bug status <id> [flags] ### SEE ALSO * [git-bug](git-bug.md) - A bugtracker embedded in Git +* [git-bug status close](git-bug_status_close.md) - Mark the bug as closed +* [git-bug status open](git-bug_status_open.md) - Mark the bug as open diff --git a/doc/md/git-bug_status_close.md b/doc/md/git-bug_status_close.md new file mode 100644 index 00000000..4660972a --- /dev/null +++ b/doc/md/git-bug_status_close.md @@ -0,0 +1,22 @@ +## git-bug status close + +Mark the bug as closed + +### Synopsis + +Mark the bug as closed + +``` +git-bug status close <id> [flags] +``` + +### Options + +``` + -h, --help help for close +``` + +### SEE ALSO + +* [git-bug status](git-bug_status.md) - Show the bug status + diff --git a/doc/md/git-bug_status_open.md b/doc/md/git-bug_status_open.md new file mode 100644 index 00000000..920bf66d --- /dev/null +++ b/doc/md/git-bug_status_open.md @@ -0,0 +1,22 @@ +## git-bug status open + +Mark the bug as open + +### Synopsis + +Mark the bug as open + +``` +git-bug status open <id> [flags] +``` + +### Options + +``` + -h, --help help for open +``` + +### SEE ALSO + +* [git-bug status](git-bug_status.md) - Show the bug status + |