diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bash_completion/git-bug | 21 | ||||
-rw-r--r-- | doc/man/git-bug-termui.3 | 29 | ||||
-rw-r--r-- | doc/man/git-bug.3 | 2 | ||||
-rw-r--r-- | doc/md/git-bug.md | 1 | ||||
-rw-r--r-- | doc/md/git-bug_termui.md | 22 | ||||
-rw-r--r-- | doc/zsh_completion/git-bug | 2 |
6 files changed, 75 insertions, 2 deletions
diff --git a/doc/bash_completion/git-bug b/doc/bash_completion/git-bug index 7ab85fca..0be168de 100644 --- a/doc/bash_completion/git-bug +++ b/doc/bash_completion/git-bug @@ -461,6 +461,26 @@ _git-bug_show() noun_aliases=() } +_git-bug_termui() +{ + last_command="git-bug_termui" + + command_aliases=() + + commands=() + + flags=() + two_word_flags=() + local_nonpersistent_flags=() + flags_with_completion=() + flags_completion=() + + + must_have_one_flag=() + must_have_one_noun=() + noun_aliases=() +} + _git-bug_webui() { last_command="git-bug_webui" @@ -501,6 +521,7 @@ _git-bug_root_command() commands+=("pull") commands+=("push") commands+=("show") + commands+=("termui") commands+=("webui") flags=() diff --git a/doc/man/git-bug-termui.3 b/doc/man/git-bug-termui.3 new file mode 100644 index 00000000..dd6eb0a9 --- /dev/null +++ b/doc/man/git-bug-termui.3 @@ -0,0 +1,29 @@ +.TH "MINE" "3" "Jul 2018" "Auto generated by spf13/cobra" "" +.nh +.ad l + + +.SH NAME +.PP +git\-bug\-termui \- Launch the terminal UI + + +.SH SYNOPSIS +.PP +\fBgit\-bug termui [flags]\fP + + +.SH DESCRIPTION +.PP +Launch the terminal UI + + +.SH OPTIONS +.PP +\fB\-h\fP, \fB\-\-help\fP[=false] + help for termui + + +.SH SEE ALSO +.PP +\fBgit\-bug(3)\fP diff --git a/doc/man/git-bug.3 b/doc/man/git-bug.3 index 066c1d1a..08aefa5b 100644 --- a/doc/man/git-bug.3 +++ b/doc/man/git-bug.3 @@ -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\-close(3)\fP, \fBgit\-bug\-commands(3)\fP, \fBgit\-bug\-comment(3)\fP, \fBgit\-bug\-label(3)\fP, \fBgit\-bug\-ls(3)\fP, \fBgit\-bug\-new(3)\fP, \fBgit\-bug\-open(3)\fP, \fBgit\-bug\-pull(3)\fP, \fBgit\-bug\-push(3)\fP, \fBgit\-bug\-show(3)\fP, \fBgit\-bug\-webui(3)\fP +\fBgit\-bug\-close(3)\fP, \fBgit\-bug\-commands(3)\fP, \fBgit\-bug\-comment(3)\fP, \fBgit\-bug\-label(3)\fP, \fBgit\-bug\-ls(3)\fP, \fBgit\-bug\-new(3)\fP, \fBgit\-bug\-open(3)\fP, \fBgit\-bug\-pull(3)\fP, \fBgit\-bug\-push(3)\fP, \fBgit\-bug\-show(3)\fP, \fBgit\-bug\-termui(3)\fP, \fBgit\-bug\-webui(3)\fP diff --git a/doc/md/git-bug.md b/doc/md/git-bug.md index eeef22f1..1e97e74e 100644 --- a/doc/md/git-bug.md +++ b/doc/md/git-bug.md @@ -30,5 +30,6 @@ git-bug [flags] * [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 +* [git-bug termui](git-bug_termui.md) - Launch the terminal UI * [git-bug webui](git-bug_webui.md) - Launch the web UI diff --git a/doc/md/git-bug_termui.md b/doc/md/git-bug_termui.md new file mode 100644 index 00000000..8bbca0fb --- /dev/null +++ b/doc/md/git-bug_termui.md @@ -0,0 +1,22 @@ +## git-bug termui + +Launch the terminal UI + +### Synopsis + +Launch the terminal UI + +``` +git-bug termui [flags] +``` + +### Options + +``` + -h, --help help for termui +``` + +### SEE ALSO + +* [git-bug](git-bug.md) - A bugtracker embedded in Git + diff --git a/doc/zsh_completion/git-bug b/doc/zsh_completion/git-bug index ce85f435..dcd83163 100644 --- a/doc/zsh_completion/git-bug +++ b/doc/zsh_completion/git-bug @@ -7,7 +7,7 @@ case $state in level1) case $words[1] in git-bug) - _arguments '1: :(close commands comment label ls new open pull push show webui)' + _arguments '1: :(close commands comment label ls new open pull push show termui webui)' ;; *) _arguments '*: :_files' |