aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/gen_manpage.go15
-rw-r--r--doc/gen_markdown.go20
-rw-r--r--doc/man/git-bug-add.16
-rw-r--r--doc/man/git-bug-bridge-bridge.129
-rw-r--r--doc/man/git-bug-bridge-configure.16
-rw-r--r--doc/man/git-bug-bridge-pull.16
-rw-r--r--doc/man/git-bug-bridge-rm.16
-rw-r--r--doc/man/git-bug-bridge.16
-rw-r--r--doc/man/git-bug-commands.16
-rw-r--r--doc/man/git-bug-comment-add.16
-rw-r--r--doc/man/git-bug-comment.16
-rw-r--r--doc/man/git-bug-deselect.16
-rw-r--r--doc/man/git-bug-label-add.16
-rw-r--r--doc/man/git-bug-label-rm.16
-rw-r--r--doc/man/git-bug-label.16
-rw-r--r--doc/man/git-bug-ls-id.129
-rw-r--r--doc/man/git-bug-ls-label.14
-rw-r--r--doc/man/git-bug-ls.14
-rw-r--r--doc/man/git-bug-pull.16
-rw-r--r--doc/man/git-bug-push.16
-rw-r--r--doc/man/git-bug-select.16
-rw-r--r--doc/man/git-bug-show.16
-rw-r--r--doc/man/git-bug-status-close.16
-rw-r--r--doc/man/git-bug-status-open.16
-rw-r--r--doc/man/git-bug-status.16
-rw-r--r--doc/man/git-bug-termui.16
-rw-r--r--doc/man/git-bug-title-edit.16
-rw-r--r--doc/man/git-bug-title.16
-rw-r--r--doc/man/git-bug-user-adopt.129
-rw-r--r--doc/man/git-bug-user-create.129
-rw-r--r--doc/man/git-bug-user-ls.129
-rw-r--r--doc/man/git-bug-user.129
-rw-r--r--doc/man/git-bug-version.16
-rw-r--r--doc/man/git-bug-webui.16
-rw-r--r--doc/man/git-bug.16
-rw-r--r--doc/md/git-bug.md37
-rw-r--r--doc/md/git-bug_add.md6
-rw-r--r--doc/md/git-bug_bridge.md12
-rw-r--r--doc/md/git-bug_bridge_bridge.md22
-rw-r--r--doc/md/git-bug_bridge_configure.md6
-rw-r--r--doc/md/git-bug_bridge_pull.md6
-rw-r--r--doc/md/git-bug_bridge_rm.md6
-rw-r--r--doc/md/git-bug_close.md22
-rw-r--r--doc/md/git-bug_commands.md6
-rw-r--r--doc/md/git-bug_comment.md8
-rw-r--r--doc/md/git-bug_comment_add.md6
-rw-r--r--doc/md/git-bug_deselect.md6
-rw-r--r--doc/md/git-bug_label.md10
-rw-r--r--doc/md/git-bug_label_add.md6
-rw-r--r--doc/md/git-bug_label_rm.md6
-rw-r--r--doc/md/git-bug_ls-id.md22
-rw-r--r--doc/md/git-bug_ls-label.md4
-rw-r--r--doc/md/git-bug_ls.md4
-rw-r--r--doc/md/git-bug_new.md25
-rw-r--r--doc/md/git-bug_open.md22
-rw-r--r--doc/md/git-bug_pull.md6
-rw-r--r--doc/md/git-bug_push.md6
-rw-r--r--doc/md/git-bug_select.md6
-rw-r--r--doc/md/git-bug_show.md6
-rw-r--r--doc/md/git-bug_status.md10
-rw-r--r--doc/md/git-bug_status_close.md6
-rw-r--r--doc/md/git-bug_status_open.md6
-rw-r--r--doc/md/git-bug_termui.md6
-rw-r--r--doc/md/git-bug_title.md8
-rw-r--r--doc/md/git-bug_title_edit.md6
-rw-r--r--doc/md/git-bug_user.md25
-rw-r--r--doc/md/git-bug_user_adopt.md22
-rw-r--r--doc/md/git-bug_user_create.md22
-rw-r--r--doc/md/git-bug_user_ls.md22
-rw-r--r--doc/md/git-bug_version.md6
-rw-r--r--doc/md/git-bug_webui.md6
71 files changed, 470 insertions, 308 deletions
diff --git a/doc/gen_manpage.go b/doc/gen_manpage.go
index 4147d915..0c7a501a 100644
--- a/doc/gen_manpage.go
+++ b/doc/gen_manpage.go
@@ -7,6 +7,7 @@ import (
"log"
"os"
"path"
+ "path/filepath"
"github.com/MichaelMure/git-bug/commands"
"github.com/spf13/cobra/doc"
@@ -14,7 +15,7 @@ import (
func main() {
cwd, _ := os.Getwd()
- filepath := path.Join(cwd, "doc", "man")
+ dir := path.Join(cwd, "doc", "man")
header := &doc.GenManHeader{
Title: "GIT-BUG",
@@ -24,7 +25,17 @@ func main() {
fmt.Println("Generating manpage ...")
- err := doc.GenManTree(commands.RootCmd, header, filepath)
+ files, err := filepath.Glob(dir + "/*.1")
+ if err != nil {
+ log.Fatal(err)
+ }
+ for _, f := range files {
+ if err := os.Remove(f); err != nil {
+ log.Fatal(err)
+ }
+ }
+
+ err = doc.GenManTree(commands.RootCmd, header, dir)
if err != nil {
log.Fatal(err)
}
diff --git a/doc/gen_markdown.go b/doc/gen_markdown.go
index ee87d544..47194666 100644
--- a/doc/gen_markdown.go
+++ b/doc/gen_markdown.go
@@ -4,20 +4,32 @@ package main
import (
"fmt"
- "github.com/MichaelMure/git-bug/commands"
- "github.com/spf13/cobra/doc"
"log"
"os"
"path"
+ "path/filepath"
+
+ "github.com/MichaelMure/git-bug/commands"
+ "github.com/spf13/cobra/doc"
)
func main() {
cwd, _ := os.Getwd()
- filepath := path.Join(cwd, "doc", "md")
+ dir := path.Join(cwd, "doc", "md")
fmt.Println("Generating Markdown documentation ...")
- err := doc.GenMarkdownTree(commands.RootCmd, filepath)
+ files, err := filepath.Glob(dir + "/*.md")
+ if err != nil {
+ log.Fatal(err)
+ }
+ for _, f := range files {
+ if err := os.Remove(f); err != nil {
+ log.Fatal(err)
+ }
+ }
+
+ err = doc.GenMarkdownTree(commands.RootCmd, dir)
if err != nil {
log.Fatal(err)
}
diff --git a/doc/man/git-bug-add.1 b/doc/man/git-bug-add.1
index dffec904..480cdf96 100644
--- a/doc/man/git-bug-add.1
+++ b/doc/man/git-bug-add.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-add \- Create a new bug
+git\-bug\-add \- Create a new bug.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-add \- Create a new bug
.SH DESCRIPTION
.PP
-Create a new bug
+Create a new bug.
.SH OPTIONS
diff --git a/doc/man/git-bug-bridge-bridge.1 b/doc/man/git-bug-bridge-bridge.1
deleted file mode 100644
index edd0a5d3..00000000
--- a/doc/man/git-bug-bridge-bridge.1
+++ /dev/null
@@ -1,29 +0,0 @@
-.TH "GIT-BUG" "1" "Sep 2018" "Generated from git-bug's source code" ""
-.nh
-.ad l
-
-
-.SH NAME
-.PP
-git\-bug\-bridge\-bridge \- Configure and use bridges to other bug trackers
-
-
-.SH SYNOPSIS
-.PP
-\fBgit\-bug bridge bridge [flags]\fP
-
-
-.SH DESCRIPTION
-.PP
-Configure and use bridges to other bug trackers
-
-
-.SH OPTIONS
-.PP
-\fB\-h\fP, \fB\-\-help\fP[=false]
- help for bridge
-
-
-.SH SEE ALSO
-.PP
-\fBgit\-bug\-bridge(1)\fP
diff --git a/doc/man/git-bug-bridge-configure.1 b/doc/man/git-bug-bridge-configure.1
index e84258f7..ed23ebc1 100644
--- a/doc/man/git-bug-bridge-configure.1
+++ b/doc/man/git-bug-bridge-configure.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-bridge\-configure \- Configure a new bridge
+git\-bug\-bridge\-configure \- Configure a new bridge.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-bridge\-configure \- Configure a new bridge
.SH DESCRIPTION
.PP
-Configure a new bridge
+Configure a new bridge.
.SH OPTIONS
diff --git a/doc/man/git-bug-bridge-pull.1 b/doc/man/git-bug-bridge-pull.1
index c9f117c7..69f69316 100644
--- a/doc/man/git-bug-bridge-pull.1
+++ b/doc/man/git-bug-bridge-pull.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-bridge\-pull \- Pull updates
+git\-bug\-bridge\-pull \- Pull updates.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-bridge\-pull \- Pull updates
.SH DESCRIPTION
.PP
-Pull updates
+Pull updates.
.SH OPTIONS
diff --git a/doc/man/git-bug-bridge-rm.1 b/doc/man/git-bug-bridge-rm.1
index 7f538acc..5760b917 100644
--- a/doc/man/git-bug-bridge-rm.1
+++ b/doc/man/git-bug-bridge-rm.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-bridge\-rm \- Delete a configured bridge
+git\-bug\-bridge\-rm \- Delete a configured bridge.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-bridge\-rm \- Delete a configured bridge
.SH DESCRIPTION
.PP
-Delete a configured bridge
+Delete a configured bridge.
.SH OPTIONS
diff --git a/doc/man/git-bug-bridge.1 b/doc/man/git-bug-bridge.1
index 4eeb627a..24702f12 100644
--- a/doc/man/git-bug-bridge.1
+++ b/doc/man/git-bug-bridge.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-bridge \- Configure and use bridges to other bug trackers
+git\-bug\-bridge \- Configure and use bridges to other bug trackers.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-bridge \- Configure and use bridges to other bug trackers
.SH DESCRIPTION
.PP
-Configure and use bridges to other bug trackers
+Configure and use bridges to other bug trackers.
.SH OPTIONS
diff --git a/doc/man/git-bug-commands.1 b/doc/man/git-bug-commands.1
index d959b2c9..fd54c8cc 100644
--- a/doc/man/git-bug-commands.1
+++ b/doc/man/git-bug-commands.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-commands \- Display available commands
+git\-bug\-commands \- Display available commands.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-commands \- Display available commands
.SH DESCRIPTION
.PP
-Display available commands
+Display available commands.
.SH OPTIONS
diff --git a/doc/man/git-bug-comment-add.1 b/doc/man/git-bug-comment-add.1
index 8a7ce4fa..f68a8bf9 100644
--- a/doc/man/git-bug-comment-add.1
+++ b/doc/man/git-bug-comment-add.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-comment\-add \- Add a new comment
+git\-bug\-comment\-add \- Add a new comment.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-comment\-add \- Add a new comment
.SH DESCRIPTION
.PP
-Add a new comment
+Add a new comment.
.SH OPTIONS
diff --git a/doc/man/git-bug-comment.1 b/doc/man/git-bug-comment.1
index 4b5300f4..234d7a01 100644
--- a/doc/man/git-bug-comment.1
+++ b/doc/man/git-bug-comment.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-comment \- Display or add comments
+git\-bug\-comment \- Display or add comments.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-comment \- Display or add comments
.SH DESCRIPTION
.PP
-Display or add comments
+Display or add comments.
.SH OPTIONS
diff --git a/doc/man/git-bug-deselect.1 b/doc/man/git-bug-deselect.1
index 35f45501..7743906f 100644
--- a/doc/man/git-bug-deselect.1
+++ b/doc/man/git-bug-deselect.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-deselect \- Clear the implicitly selected bug
+git\-bug\-deselect \- Clear the implicitly selected bug.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-deselect \- Clear the implicitly selected bug
.SH DESCRIPTION
.PP
-Clear the implicitly selected bug
+Clear the implicitly selected bug.
.SH OPTIONS
diff --git a/doc/man/git-bug-label-add.1 b/doc/man/git-bug-label-add.1
index 5cbdbb6a..a90e1d22 100644
--- a/doc/man/git-bug-label-add.1
+++ b/doc/man/git-bug-label-add.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-label\-add \- Add a label
+git\-bug\-label\-add \- Add a label.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-label\-add \- Add a label
.SH DESCRIPTION
.PP
-Add a label
+Add a label.
.SH OPTIONS
diff --git a/doc/man/git-bug-label-rm.1 b/doc/man/git-bug-label-rm.1
index fb7efdc9..61b24a9a 100644
--- a/doc/man/git-bug-label-rm.1
+++ b/doc/man/git-bug-label-rm.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-label\-rm \- Remove a label
+git\-bug\-label\-rm \- Remove a label.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-label\-rm \- Remove a label
.SH DESCRIPTION
.PP
-Remove a label
+Remove a label.
.SH OPTIONS
diff --git a/doc/man/git-bug-label.1 b/doc/man/git-bug-label.1
index d4cde473..2c005603 100644
--- a/doc/man/git-bug-label.1
+++ b/doc/man/git-bug-label.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-label \- Display, add or remove labels
+git\-bug\-label \- Display, add or remove labels.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-label \- Display, add or remove labels
.SH DESCRIPTION
.PP
-Display, add or remove labels
+Display, add or remove labels.
.SH OPTIONS
diff --git a/doc/man/git-bug-ls-id.1 b/doc/man/git-bug-ls-id.1
new file mode 100644
index 00000000..aba67e1c
--- /dev/null
+++ b/doc/man/git-bug-ls-id.1
@@ -0,0 +1,29 @@
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
+.nh
+.ad l
+
+
+.SH NAME
+.PP
+git\-bug\-ls\-id \- List Bug Id
+
+
+.SH SYNOPSIS
+.PP
+\fBgit\-bug ls\-id [<prefix>] [flags]\fP
+
+
+.SH DESCRIPTION
+.PP
+List Bug Id
+
+
+.SH OPTIONS
+.PP
+\fB\-h\fP, \fB\-\-help\fP[=false]
+ help for ls\-id
+
+
+.SH SEE ALSO
+.PP
+\fBgit\-bug(1)\fP
diff --git a/doc/man/git-bug-ls-label.1 b/doc/man/git-bug-ls-label.1
index 1b69b305..1fa37b7f 100644
--- a/doc/man/git-bug-ls-label.1
+++ b/doc/man/git-bug-ls-label.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-ls\-label \- List valid labels
+git\-bug\-ls\-label \- List valid labels.
.SH SYNOPSIS
diff --git a/doc/man/git-bug-ls.1 b/doc/man/git-bug-ls.1
index e9cdb4c8..eb985fd2 100644
--- a/doc/man/git-bug-ls.1
+++ b/doc/man/git-bug-ls.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-ls \- List bugs
+git\-bug\-ls \- List bugs.
.SH SYNOPSIS
diff --git a/doc/man/git-bug-pull.1 b/doc/man/git-bug-pull.1
index 315ce01a..9dbf511b 100644
--- a/doc/man/git-bug-pull.1
+++ b/doc/man/git-bug-pull.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-pull \- Pull bugs update from a git remote
+git\-bug\-pull \- Pull bugs update from a git remote.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-pull \- Pull bugs update from a git remote
.SH DESCRIPTION
.PP
-Pull bugs update from a git remote
+Pull bugs update from a git remote.
.SH OPTIONS
diff --git a/doc/man/git-bug-push.1 b/doc/man/git-bug-push.1
index 0466e0ef..e220cfa5 100644
--- a/doc/man/git-bug-push.1
+++ b/doc/man/git-bug-push.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-push \- Push bugs update to a git remote
+git\-bug\-push \- Push bugs update to a git remote.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-push \- Push bugs update to a git remote
.SH DESCRIPTION
.PP
-Push bugs update to a git remote
+Push bugs update to a git remote.
.SH OPTIONS
diff --git a/doc/man/git-bug-select.1 b/doc/man/git-bug-select.1
index 9324a873..677795c3 100644
--- a/doc/man/git-bug-select.1
+++ b/doc/man/git-bug-select.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-select \- Select a bug for implicit use in future commands
+git\-bug\-select \- Select a bug for implicit use in future commands.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-select \- Select a bug for implicit use in future commands
.SH DESCRIPTION
.PP
-Select a bug for implicit use in future commands
+Select a bug for implicit use in future commands.
.SH OPTIONS
diff --git a/doc/man/git-bug-show.1 b/doc/man/git-bug-show.1
index 443b75ec..9656e9f1 100644
--- a/doc/man/git-bug-show.1
+++ b/doc/man/git-bug-show.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-show \- Display the details of a bug
+git\-bug\-show \- Display the details of a bug.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-show \- Display the details of a bug
.SH DESCRIPTION
.PP
-Display the details of a bug
+Display the details of a bug.
.SH OPTIONS
diff --git a/doc/man/git-bug-status-close.1 b/doc/man/git-bug-status-close.1
index 9552d037..17fb03f3 100644
--- a/doc/man/git-bug-status-close.1
+++ b/doc/man/git-bug-status-close.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-status\-close \- Mark a bug as closed
+git\-bug\-status\-close \- Mark a bug as closed.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-status\-close \- Mark a bug as closed
.SH DESCRIPTION
.PP
-Mark a bug as closed
+Mark a bug as closed.
.SH OPTIONS
diff --git a/doc/man/git-bug-status-open.1 b/doc/man/git-bug-status-open.1
index 9f7b69cf..ec219a4b 100644
--- a/doc/man/git-bug-status-open.1
+++ b/doc/man/git-bug-status-open.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-status\-open \- Mark a bug as open
+git\-bug\-status\-open \- Mark a bug as open.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-status\-open \- Mark a bug as open
.SH DESCRIPTION
.PP
-Mark a bug as open
+Mark a bug as open.
.SH OPTIONS
diff --git a/doc/man/git-bug-status.1 b/doc/man/git-bug-status.1
index c31e542d..104d03b0 100644
--- a/doc/man/git-bug-status.1
+++ b/doc/man/git-bug-status.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-status \- Display or change a bug status
+git\-bug\-status \- Display or change a bug status.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-status \- Display or change a bug status
.SH DESCRIPTION
.PP
-Display or change a bug status
+Display or change a bug status.
.SH OPTIONS
diff --git a/doc/man/git-bug-termui.1 b/doc/man/git-bug-termui.1
index d395ab06..76bae0a1 100644
--- a/doc/man/git-bug-termui.1
+++ b/doc/man/git-bug-termui.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-termui \- Launch the terminal UI
+git\-bug\-termui \- Launch the terminal UI.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-termui \- Launch the terminal UI
.SH DESCRIPTION
.PP
-Launch the terminal UI
+Launch the terminal UI.
.SH OPTIONS
diff --git a/doc/man/git-bug-title-edit.1 b/doc/man/git-bug-title-edit.1
index ab33c4ae..642f7baa 100644
--- a/doc/man/git-bug-title-edit.1
+++ b/doc/man/git-bug-title-edit.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-title\-edit \- Edit a title
+git\-bug\-title\-edit \- Edit a title.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-title\-edit \- Edit a title
.SH DESCRIPTION
.PP
-Edit a title
+Edit a title.
.SH OPTIONS
diff --git a/doc/man/git-bug-title.1 b/doc/man/git-bug-title.1
index 5dc58465..9dd2c346 100644
--- a/doc/man/git-bug-title.1
+++ b/doc/man/git-bug-title.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-title \- Display or change a title
+git\-bug\-title \- Display or change a title.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-title \- Display or change a title
.SH DESCRIPTION
.PP
-Display or change a title
+Display or change a title.
.SH OPTIONS
diff --git a/doc/man/git-bug-user-adopt.1 b/doc/man/git-bug-user-adopt.1
new file mode 100644
index 00000000..55e5f62f
--- /dev/null
+++ b/doc/man/git-bug-user-adopt.1
@@ -0,0 +1,29 @@
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
+.nh
+.ad l
+
+
+.SH NAME
+.PP
+git\-bug\-user\-adopt \- Adopt an existing identity as your own.
+
+
+.SH SYNOPSIS
+.PP
+\fBgit\-bug user adopt <id> [flags]\fP
+
+
+.SH DESCRIPTION
+.PP
+Adopt an existing identity as your own.
+
+
+.SH OPTIONS
+.PP
+\fB\-h\fP, \fB\-\-help\fP[=false]
+ help for adopt
+
+
+.SH SEE ALSO
+.PP
+\fBgit\-bug\-user(1)\fP
diff --git a/doc/man/git-bug-user-create.1 b/doc/man/git-bug-user-create.1
new file mode 100644
index 00000000..07dc08b9
--- /dev/null
+++ b/doc/man/git-bug-user-create.1
@@ -0,0 +1,29 @@
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
+.nh
+.ad l
+
+
+.SH NAME
+.PP
+git\-bug\-user\-create \- Create a new identity.
+
+
+.SH SYNOPSIS
+.PP
+\fBgit\-bug user create [flags]\fP
+
+
+.SH DESCRIPTION
+.PP
+Create a new identity.
+
+
+.SH OPTIONS
+.PP
+\fB\-h\fP, \fB\-\-help\fP[=false]
+ help for create
+
+
+.SH SEE ALSO
+.PP
+\fBgit\-bug\-user(1)\fP
diff --git a/doc/man/git-bug-user-ls.1 b/doc/man/git-bug-user-ls.1
new file mode 100644
index 00000000..6e8b8f68
--- /dev/null
+++ b/doc/man/git-bug-user-ls.1
@@ -0,0 +1,29 @@
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
+.nh
+.ad l
+
+
+.SH NAME
+.PP
+git\-bug\-user\-ls \- List identities.
+
+
+.SH SYNOPSIS
+.PP
+\fBgit\-bug user ls [flags]\fP
+
+
+.SH DESCRIPTION
+.PP
+List identities.
+
+
+.SH OPTIONS
+.PP
+\fB\-h\fP, \fB\-\-help\fP[=false]
+ help for ls
+
+
+.SH SEE ALSO
+.PP
+\fBgit\-bug\-user(1)\fP
diff --git a/doc/man/git-bug-user.1 b/doc/man/git-bug-user.1
new file mode 100644
index 00000000..083db84c
--- /dev/null
+++ b/doc/man/git-bug-user.1
@@ -0,0 +1,29 @@
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
+.nh
+.ad l
+
+
+.SH NAME
+.PP
+git\-bug\-user \- Display or change the user identity.
+
+
+.SH SYNOPSIS
+.PP
+\fBgit\-bug user [<id>] [flags]\fP
+
+
+.SH DESCRIPTION
+.PP
+Display or change the user identity.
+
+
+.SH OPTIONS
+.PP
+\fB\-h\fP, \fB\-\-help\fP[=false]
+ help for user
+
+
+.SH SEE ALSO
+.PP
+\fBgit\-bug(1)\fP, \fBgit\-bug\-user\-adopt(1)\fP, \fBgit\-bug\-user\-create(1)\fP, \fBgit\-bug\-user\-ls(1)\fP
diff --git a/doc/man/git-bug-version.1 b/doc/man/git-bug-version.1
index 09bf6cf4..e8b84eb6 100644
--- a/doc/man/git-bug-version.1
+++ b/doc/man/git-bug-version.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-version \- Show git\-bug version information
+git\-bug\-version \- Show git\-bug version information.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-version \- Show git\-bug version information
.SH DESCRIPTION
.PP
-Show git\-bug version information
+Show git\-bug version information.
.SH OPTIONS
diff --git a/doc/man/git-bug-webui.1 b/doc/man/git-bug-webui.1
index 5ca9e4e9..c641a342 100644
--- a/doc/man/git-bug-webui.1
+++ b/doc/man/git-bug-webui.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug\-webui \- Launch the web UI
+git\-bug\-webui \- Launch the web UI.
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-webui \- Launch the web UI
.SH DESCRIPTION
.PP
-Launch the web UI
+Launch the web UI.
.SH OPTIONS
diff --git a/doc/man/git-bug.1 b/doc/man/git-bug.1
index 123f9a33..40d4b1aa 100644
--- a/doc/man/git-bug.1
+++ b/doc/man/git-bug.1
@@ -1,11 +1,11 @@
-.TH "GIT-BUG" "1" "Feb 2019" "Generated from git-bug's source code" ""
+.TH "GIT-BUG" "1" "Mar 2019" "Generated from git-bug's source code" ""
.nh
.ad l
.SH NAME
.PP
-git\-bug \- A bug tracker embedded in Git
+git\-bug \- A bug tracker embedded in Git.
.SH SYNOPSIS
@@ -31,4 +31,4 @@ the same git remote your are already using to collaborate with other peoples.
.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\-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\-version(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\-id(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\-user(1)\fP, \fBgit\-bug\-version(1)\fP, \fBgit\-bug\-webui(1)\fP
diff --git a/doc/md/git-bug.md b/doc/md/git-bug.md
index a1c1c885..1de9133b 100644
--- a/doc/md/git-bug.md
+++ b/doc/md/git-bug.md
@@ -1,6 +1,6 @@
## git-bug
-A bug tracker embedded in Git
+A bug tracker embedded in Git.
### Synopsis
@@ -24,22 +24,23 @@ git-bug [flags]
### SEE ALSO
-* [git-bug add](git-bug_add.md) - Create a new bug
-* [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 add](git-bug_add.md) - Create a new bug.
+* [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-id](git-bug_ls-id.md) - List Bug Id
-* [git-bug ls-label](git-bug_ls-label.md) - List valid labels
-* [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) - Display or change a bug status
-* [git-bug termui](git-bug_termui.md) - Launch the terminal UI
-* [git-bug title](git-bug_title.md) - Display or change a title
-* [git-bug version](git-bug_version.md) - Show git-bug version information
-* [git-bug webui](git-bug_webui.md) - Launch the web UI
+* [git-bug ls-label](git-bug_ls-label.md) - List valid labels.
+* [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) - Display or change a bug status.
+* [git-bug termui](git-bug_termui.md) - Launch the terminal UI.
+* [git-bug title](git-bug_title.md) - Display or change a title.
+* [git-bug user](git-bug_user.md) - Display or change the user identity.
+* [git-bug version](git-bug_version.md) - Show git-bug version information.
+* [git-bug webui](git-bug_webui.md) - Launch the web UI.
diff --git a/doc/md/git-bug_add.md b/doc/md/git-bug_add.md
index d212c9b1..c103cebb 100644
--- a/doc/md/git-bug_add.md
+++ b/doc/md/git-bug_add.md
@@ -1,10 +1,10 @@
## git-bug add
-Create a new bug
+Create a new bug.
### Synopsis
-Create a new bug
+Create a new bug.
```
git-bug add [flags]
@@ -21,5 +21,5 @@ git-bug add [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bug tracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
diff --git a/doc/md/git-bug_bridge.md b/doc/md/git-bug_bridge.md
index da7f0978..7d01a300 100644
--- a/doc/md/git-bug_bridge.md
+++ b/doc/md/git-bug_bridge.md
@@ -1,10 +1,10 @@
## git-bug bridge
-Configure and use bridges to other bug trackers
+Configure and use bridges to other bug trackers.
### Synopsis
-Configure and use bridges to other bug trackers
+Configure and use bridges to other bug trackers.
```
git-bug bridge [flags]
@@ -18,8 +18,8 @@ git-bug bridge [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bug tracker embedded in Git
-* [git-bug bridge configure](git-bug_bridge_configure.md) - Configure a new bridge
-* [git-bug bridge pull](git-bug_bridge_pull.md) - Pull updates
-* [git-bug bridge rm](git-bug_bridge_rm.md) - Delete a configured bridge
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
+* [git-bug bridge configure](git-bug_bridge_configure.md) - Configure a new bridge.
+* [git-bug bridge pull](git-bug_bridge_pull.md) - Pull updates.
+* [git-bug bridge rm](git-bug_bridge_rm.md) - Delete a configured bridge.
diff --git a/doc/md/git-bug_bridge_bridge.md b/doc/md/git-bug_bridge_bridge.md
deleted file mode 100644
index d5803190..00000000
--- a/doc/md/git-bug_bridge_bridge.md
+++ /dev/null
@@ -1,22 +0,0 @@
-## git-bug bridge bridge
-
-Configure and use bridges to other bug trackers
-
-### Synopsis
-
-Configure and use bridges to other bug trackers
-
-```
-git-bug bridge bridge [flags]
-```
-
-### Options
-
-```
- -h, --help help for bridge
-```
-
-### SEE ALSO
-
-* [git-bug bridge](git-bug_bridge.md) - Configure and use bridges to other bug trackers
-
diff --git a/doc/md/git-bug_bridge_configure.md b/doc/md/git-bug_bridge_configure.md
index ca66f500..63fbbbca 100644
--- a/doc/md/git-bug_bridge_configure.md
+++ b/doc/md/git-bug_bridge_configure.md
@@ -1,10 +1,10 @@
## git-bug bridge configure
-Configure a new bridge
+Configure a new bridge.
### Synopsis
-Configure a new bridge
+Configure a new bridge.
```
git-bug bridge configure [flags]
@@ -18,5 +18,5 @@ git-bug bridge configure [flags]
### SEE ALSO
-* [git-bug bridge](git-bug_bridge.md) - Configure and use bridges to other bug trackers
+* [git-bug bridge](git-bug_bridge.md) - Configure and use bridges to other bug trackers.
diff --git a/doc/md/git-bug_bridge_pull.md b/doc/md/git-bug_bridge_pull.md
index 10da2e8a..14b62f60 100644
--- a/doc/md/git-bug_bridge_pull.md
+++ b/doc/md/git-bug_bridge_pull.md
@@ -1,10 +1,10 @@
## git-bug bridge pull
-Pull updates
+Pull updates.
### Synopsis
-Pull updates
+Pull updates.
```
git-bug bridge pull [<name>] [flags]
@@ -18,5 +18,5 @@ git-bug bridge pull [<name>] [flags]
### SEE ALSO
-* [git-bug bridge](git-bug_bridge.md) - Configure and use bridges to other bug trackers
+* [git-bug bridge](git-bug_bridge.md) - Configure and use bridges to other bug trackers.
diff --git a/doc/md/git-bug_bridge_rm.md b/doc/md/git-bug_bridge_rm.md
index 15b20749..ab58e969 100644
--- a/doc/md/git-bug_bridge_rm.md
+++ b/doc/md/git-bug_bridge_rm.md
@@ -1,10 +1,10 @@
## git-bug bridge rm
-Delete a configured bridge
+Delete a configured bridge.
### Synopsis
-Delete a configured bridge
+Delete a configured bridge.
```
git-bug bridge rm name <name> [flags]
@@ -18,5 +18,5 @@ git-bug bridge rm name <name> [flags]
### SEE ALSO
-* [git-bug bridge](git-bug_bridge.md) - Configure and use bridges to other bug trackers
+* [git-bug bridge](git-bug_bridge.md) - Configure and use bridges to other bug trackers.
diff --git a/doc/md/git-bug_close.md b/doc/md/git-bug_close.md
deleted file mode 100644
index ab95706d..00000000
--- a/doc/md/git-bug_close.md
+++ /dev/null
@@ -1,22 +0,0 @@
-## git-bug close
-
-Mark the bug as closed
-
-### Synopsis
-
-Mark the bug as closed
-
-```
-git-bug close <id> [flags]
-```
-
-### Options
-
-```
- -h, --help help for close
-```
-
-### SEE ALSO
-
-* [git-bug](git-bug.md) - A bugtracker embedded in Git
-
diff --git a/doc/md/git-bug_commands.md b/doc/md/git-bug_commands.md
index 6d777b40..e1a409d2 100644
--- a/doc/md/git-bug_commands.md
+++ b/doc/md/git-bug_commands.md
@@ -1,10 +1,10 @@
## git-bug commands
-Display available commands
+Display available commands.
### Synopsis
-Display available commands
+Display available commands.
```
git-bug commands [<option>...] [flags]
@@ -19,5 +19,5 @@ git-bug commands [<option>...] [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bug tracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
diff --git a/doc/md/git-bug_comment.md b/doc/md/git-bug_comment.md
index 0ffd9e96..31a80e51 100644
--- a/doc/md/git-bug_comment.md
+++ b/doc/md/git-bug_comment.md
@@ -1,10 +1,10 @@
## git-bug comment
-Display or add comments
+Display or add comments.
### Synopsis
-Display or add comments
+Display or add comments.
```
git-bug comment [<id>] [flags]
@@ -18,6 +18,6 @@ git-bug comment [<id>] [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bug tracker embedded in Git
-* [git-bug comment add](git-bug_comment_add.md) - Add a new comment
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
+* [git-bug comment add](git-bug_comment_add.md) - Add a new comment.
diff --git a/doc/md/git-bug_comment_add.md b/doc/md/git-bug_comment_add.md
index 7b8e5043..5a1e429e 100644
--- a/doc/md/git-bug_comment_add.md
+++ b/doc/md/git-bug_comment_add.md
@@ -1,10 +1,10 @@
## git-bug comment add
-Add a new comment
+Add a new comment.
### Synopsis
-Add a new comment
+Add a new comment.
```
git-bug comment add [<id>] [flags]
@@ -20,5 +20,5 @@ git-bug comment add [<id>] [flags]
### SEE ALSO
-* [git-bug comment](git-bug_comment.md) - Display or add comments
+* [git-bug comment](git-bug_comment.md) - Display or add comments.
diff --git a/doc/md/git-bug_deselect.md b/doc/md/git-bug_deselect.md
index dbc86dc9..7cf667b0 100644
--- a/doc/md/git-bug_deselect.md
+++ b/doc/md/git-bug_deselect.md
@@ -1,10 +1,10 @@
## git-bug deselect
-Clear the implicitly selected bug
+Clear the implicitly selected bug.
### Synopsis
-Clear the implicitly selected bug
+Clear the implicitly selected bug.
```
git-bug deselect [flags]
@@ -28,5 +28,5 @@ git bug deselect
### SEE ALSO
-* [git-bug](git-bug.md) - A bug tracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
diff --git a/doc/md/git-bug_label.md b/doc/md/git-bug_label.md
index 9c214fe9..df2cae5a 100644
--- a/doc/md/git-bug_label.md
+++ b/doc/md/git-bug_label.md
@@ -1,10 +1,10 @@
## git-bug label
-Display, add or remove labels
+Display, add or remove labels.
### Synopsis
-Display, add or remove labels
+Display, add or remove labels.
```
git-bug label [<id>] [flags]
@@ -18,7 +18,7 @@ git-bug label [<id>] [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bug tracker embedded in Git
-* [git-bug label add](git-bug_label_add.md) - Add a label
-* [git-bug label rm](git-bug_label_rm.md) - Remove a label
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
+* [git-bug label add](git-bug_label_add.md) - Add a label.
+* [git-bug label rm](git-bug_label_rm.md) - Remove a label.
diff --git a/doc/md/git-bug_label_add.md b/doc/md/git-bug_label_add.md
index f37cc080..9e642734 100644
--- a/doc/md/git-bug_label_add.md
+++ b/doc/md/git-bug_label_add.md
@@ -1,10 +1,10 @@
## git-bug label add
-Add a label
+Add a label.
### Synopsis
-Add a label
+Add a label.
```
git-bug label add [<id>] <label>[...] [flags]
@@ -18,5 +18,5 @@ git-bug label add [<id>] <label>[...] [flags]
### SEE ALSO
-* [git-bug label](git-bug_label.md) - Display, add or remove labels
+* [git-bug label](git-bug_label.md) - Display, add or remove labels.
diff --git a/doc/md/git-bug_label_rm.md b/doc/md/git-bug_label_rm.md
index 19e664f8..850b4d58 100644
--- a/doc/md/git-bug_label_rm.md
+++ b/doc/md/git-bug_label_rm.md
@@ -1,10 +1,10 @@
## git-bug label rm
-Remove a label
+Remove a label.
### Synopsis
-Remove a label
+Remove a label.
```
git-bug label rm [<id>] <label>[...] [flags]
@@ -18,5 +18,5 @@ git-bug label rm [<id>] <label>[...] [flags]
### SEE ALSO
-* [git-bug label](git-bug_label.md) - Display, add or remove labels
+* [git-bug label](git-bug_label.md) - Display, add or remove labels.
diff --git a/doc/md/git-bug_ls-id.md b/doc/md/git-bug_ls-id.md
new file mode 100644
index 00000000..2e99f134
--- /dev/null
+++ b/doc/md/git-bug_ls-id.md
@@ -0,0 +1,22 @@
+## git-bug ls-id
+
+List Bug Id
+
+### Synopsis
+
+List Bug Id
+
+```
+git-bug ls-id [<prefix>] [flags]
+```
+
+### Options
+
+```
+ -h, --help help for ls-id
+```
+
+### SEE ALSO
+
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
+
diff --git a/doc/md/git-bug_ls-label.md b/doc/md/git-bug_ls-label.md
index f3b82f4f..9ee6fa8c 100644
--- a/doc/md/git-bug_ls-label.md
+++ b/doc/md/git-bug_ls-label.md
@@ -1,6 +1,6 @@
## git-bug ls-label
-List valid labels
+List valid labels.
### Synopsis
@@ -20,5 +20,5 @@ git-bug ls-label [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bug tracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
diff --git a/doc/md/git-bug_ls.md b/doc/md/git-bug_ls.md
index a9a2994a..18ac5d61 100644
--- a/doc/md/git-bug_ls.md
+++ b/doc/md/git-bug_ls.md
@@ -1,6 +1,6 @@
## git-bug ls
-List bugs
+List bugs.
### Synopsis
@@ -37,5 +37,5 @@ git bug ls --status closed --by creation
### SEE ALSO
-* [git-bug](git-bug.md) - A bug tracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
diff --git a/doc/md/git-bug_new.md b/doc/md/git-bug_new.md
deleted file mode 100644
index de6cffbf..00000000
--- a/doc/md/git-bug_new.md
+++ /dev/null
@@ -1,25 +0,0 @@
-## git-bug new
-
-Create a new bug
-
-### Synopsis
-
-Create a new bug
-
-```
-git-bug new [flags]
-```
-
-### Options
-
-```
- -t, --title string Provide a title to describe the issue
- -m, --message string Provide a message to describe the issue
- -F, --file string Take the message from the given file. Use - to read the message from the standard input
- -h, --help help for new
-```
-
-### SEE ALSO
-
-* [git-bug](git-bug.md) - A bugtracker embedded in Git
-
diff --git a/doc/md/git-bug_open.md b/doc/md/git-bug_open.md
deleted file mode 100644
index 38c6d6fa..00000000
--- a/doc/md/git-bug_open.md
+++ /dev/null
@@ -1,22 +0,0 @@
-## git-bug open
-
-Mark the bug as open
-
-### Synopsis
-
-Mark the bug as open
-
-```
-git-bug open <id> [flags]
-```
-
-### Options
-
-```
- -h, --help help for open
-```
-
-### SEE ALSO
-
-* [git-bug](git-bug.md) - A bugtracker embedded in Git
-
diff --git a/doc/md/git-bug_pull.md b/doc/md/git-bug_pull.md
index dad75b8b..1519c87f 100644
--- a/doc/md/git-bug_pull.md
+++ b/doc/md/git-bug_pull.md
@@ -1,10 +1,10 @@
## git-bug pull
-Pull bugs update from a git remote
+Pull bugs update from a git remote.
### Synopsis
-Pull bugs update from a git remote
+Pull bugs update from a git remote.
```
git-bug pull [<remote>] [flags]
@@ -18,5 +18,5 @@ git-bug pull [<remote>] [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bug tracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
diff --git a/doc/md/git-bug_push.md b/doc/md/git-bug_push.md
index 1ea996ed..5e95ea2f 100644
--- a/doc/md/git-bug_push.md
+++ b/doc/md/git-bug_push.md
@@ -1,10 +1,10 @@
## git-bug push
-Push bugs update to a git remote
+Push bugs update to a git remote.
### Synopsis
-Push bugs update to a git remote
+Push bugs update to a git remote.
```
git-bug push [<remote>] [flags]
@@ -18,5 +18,5 @@ git-bug push [<remote>] [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bug tracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
diff --git a/doc/md/git-bug_select.md b/doc/md/git-bug_select.md
index 6831496d..c8125380 100644
--- a/doc/md/git-bug_select.md
+++ b/doc/md/git-bug_select.md
@@ -1,10 +1,10 @@
## git-bug select
-Select a bug for implicit use in future commands
+Select a bug for implicit use in future commands.
### Synopsis
-Select a bug for implicit use in future commands
+Select a bug for implicit use in future commands.
```
git-bug select <id> [flags]
@@ -27,5 +27,5 @@ git bug status
### SEE ALSO
-* [git-bug](git-bug.md) - A bug tracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
diff --git a/doc/md/git-bug_show.md b/doc/md/git-bug_show.md
index 677ce9cd..86f3cfce 100644
--- a/doc/md/git-bug_show.md
+++ b/doc/md/git-bug_show.md
@@ -1,10 +1,10 @@
## git-bug show
-Display the details of a bug
+Display the details of a bug.
### Synopsis
-Display the details of a bug
+Display the details of a bug.
```
git-bug show [<id>] [flags]
@@ -19,5 +19,5 @@ git-bug show [<id>] [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bug tracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
diff --git a/doc/md/git-bug_status.md b/doc/md/git-bug_status.md
index 5a1c1f4a..a04098e6 100644
--- a/doc/md/git-bug_status.md
+++ b/doc/md/git-bug_status.md
@@ -1,10 +1,10 @@
## git-bug status
-Display or change a bug status
+Display or change a bug status.
### Synopsis
-Display or change a bug status
+Display or change a bug status.
```
git-bug status [<id>] [flags]
@@ -18,7 +18,7 @@ git-bug status [<id>] [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bug tracker embedded in Git
-* [git-bug status close](git-bug_status_close.md) - Mark a bug as closed
-* [git-bug status open](git-bug_status_open.md) - Mark a bug as open
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
+* [git-bug status close](git-bug_status_close.md) - Mark a bug as closed.
+* [git-bug status open](git-bug_status_open.md) - Mark a bug as open.
diff --git a/doc/md/git-bug_status_close.md b/doc/md/git-bug_status_close.md
index e0655338..4978341f 100644
--- a/doc/md/git-bug_status_close.md
+++ b/doc/md/git-bug_status_close.md
@@ -1,10 +1,10 @@
## git-bug status close
-Mark a bug as closed
+Mark a bug as closed.
### Synopsis
-Mark a bug as closed
+Mark a bug as closed.
```
git-bug status close [<id>] [flags]
@@ -18,5 +18,5 @@ git-bug status close [<id>] [flags]
### SEE ALSO
-* [git-bug status](git-bug_status.md) - Display or change a bug status
+* [git-bug status](git-bug_status.md) - Display or change a bug status.
diff --git a/doc/md/git-bug_status_open.md b/doc/md/git-bug_status_open.md
index 3763d4cd..f6d03215 100644
--- a/doc/md/git-bug_status_open.md
+++ b/doc/md/git-bug_status_open.md
@@ -1,10 +1,10 @@
## git-bug status open
-Mark a bug as open
+Mark a bug as open.
### Synopsis
-Mark a bug as open
+Mark a bug as open.
```
git-bug status open [<id>] [flags]
@@ -18,5 +18,5 @@ git-bug status open [<id>] [flags]
### SEE ALSO
-* [git-bug status](git-bug_status.md) - Display or change a bug status
+* [git-bug status](git-bug_status.md) - Display or change a bug status.
diff --git a/doc/md/git-bug_termui.md b/doc/md/git-bug_termui.md
index 53ed49e5..02e59e60 100644
--- a/doc/md/git-bug_termui.md
+++ b/doc/md/git-bug_termui.md
@@ -1,10 +1,10 @@
## git-bug termui
-Launch the terminal UI
+Launch the terminal UI.
### Synopsis
-Launch the terminal UI
+Launch the terminal UI.
```
git-bug termui [flags]
@@ -18,5 +18,5 @@ git-bug termui [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bug tracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
diff --git a/doc/md/git-bug_title.md b/doc/md/git-bug_title.md
index 85a5d9f7..2e51b06f 100644
--- a/doc/md/git-bug_title.md
+++ b/doc/md/git-bug_title.md
@@ -1,10 +1,10 @@
## git-bug title
-Display or change a title
+Display or change a title.
### Synopsis
-Display or change a title
+Display or change a title.
```
git-bug title [<id>] [flags]
@@ -18,6 +18,6 @@ git-bug title [<id>] [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bug tracker embedded in Git
-* [git-bug title edit](git-bug_title_edit.md) - Edit a title
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
+* [git-bug title edit](git-bug_title_edit.md) - Edit a title.
diff --git a/doc/md/git-bug_title_edit.md b/doc/md/git-bug_title_edit.md
index dc463390..63c7168b 100644
--- a/doc/md/git-bug_title_edit.md
+++ b/doc/md/git-bug_title_edit.md
@@ -1,10 +1,10 @@
## git-bug title edit
-Edit a title
+Edit a title.
### Synopsis
-Edit a title
+Edit a title.
```
git-bug title edit [<id>] [flags]
@@ -19,5 +19,5 @@ git-bug title edit [<id>] [flags]
### SEE ALSO
-* [git-bug title](git-bug_title.md) - Display or change a title
+* [git-bug title](git-bug_title.md) - Display or change a title.
diff --git a/doc/md/git-bug_user.md b/doc/md/git-bug_user.md
new file mode 100644
index 00000000..8121b750
--- /dev/null
+++ b/doc/md/git-bug_user.md
@@ -0,0 +1,25 @@
+## git-bug user
+
+Display or change the user identity.
+
+### Synopsis
+
+Display or change the user identity.
+
+```
+git-bug user [<id>] [flags]
+```
+
+### Options
+
+```
+ -h, --help help for user
+```
+
+### SEE ALSO
+
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
+* [git-bug user adopt](git-bug_user_adopt.md) - Adopt an existing identity as your own.
+* [git-bug user create](git-bug_user_create.md) - Create a new identity.
+* [git-bug user ls](git-bug_user_ls.md) - List identities.
+
diff --git a/doc/md/git-bug_user_adopt.md b/doc/md/git-bug_user_adopt.md
new file mode 100644
index 00000000..f89cdf68
--- /dev/null
+++ b/doc/md/git-bug_user_adopt.md
@@ -0,0 +1,22 @@
+## git-bug user adopt
+
+Adopt an existing identity as your own.
+
+### Synopsis
+
+Adopt an existing identity as your own.
+
+```
+git-bug user adopt <id> [flags]
+```
+
+### Options
+
+```
+ -h, --help help for adopt
+```
+
+### SEE ALSO
+
+* [git-bug user](git-bug_user.md) - Display or change the user identity.
+
diff --git a/doc/md/git-bug_user_create.md b/doc/md/git-bug_user_create.md
new file mode 100644
index 00000000..8af6e37a
--- /dev/null
+++ b/doc/md/git-bug_user_create.md
@@ -0,0 +1,22 @@
+## git-bug user create
+
+Create a new identity.
+
+### Synopsis
+
+Create a new identity.
+
+```
+git-bug user create [flags]
+```
+
+### Options
+
+```
+ -h, --help help for create
+```
+
+### SEE ALSO
+
+* [git-bug user](git-bug_user.md) - Display or change the user identity.
+
diff --git a/doc/md/git-bug_user_ls.md b/doc/md/git-bug_user_ls.md
new file mode 100644
index 00000000..d390ed2a
--- /dev/null
+++ b/doc/md/git-bug_user_ls.md
@@ -0,0 +1,22 @@
+## git-bug user ls
+
+List identities.
+
+### Synopsis
+
+List identities.
+
+```
+git-bug user ls [flags]
+```
+
+### Options
+
+```
+ -h, --help help for ls
+```
+
+### SEE ALSO
+
+* [git-bug user](git-bug_user.md) - Display or change the user identity.
+
diff --git a/doc/md/git-bug_version.md b/doc/md/git-bug_version.md
index 6b6d4288..d10312ff 100644
--- a/doc/md/git-bug_version.md
+++ b/doc/md/git-bug_version.md
@@ -1,10 +1,10 @@
## git-bug version
-Show git-bug version information
+Show git-bug version information.
### Synopsis
-Show git-bug version information
+Show git-bug version information.
```
git-bug version [flags]
@@ -21,5 +21,5 @@ git-bug version [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bug tracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.
diff --git a/doc/md/git-bug_webui.md b/doc/md/git-bug_webui.md
index 670130aa..cc3a85de 100644
--- a/doc/md/git-bug_webui.md
+++ b/doc/md/git-bug_webui.md
@@ -1,10 +1,10 @@
## git-bug webui
-Launch the web UI
+Launch the web UI.
### Synopsis
-Launch the web UI
+Launch the web UI.
```
git-bug webui [flags]
@@ -19,5 +19,5 @@ git-bug webui [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bug tracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git.