diff options
62 files changed, 197 insertions, 145 deletions
diff --git a/commands/add.go b/commands/add.go index 54ede126..ea40227c 100644 --- a/commands/add.go +++ b/commands/add.go @@ -56,7 +56,7 @@ func runAddBug(cmd *cobra.Command, args []string) error { var addCmd = &cobra.Command{ Use: "add", - Short: "Create a new bug", + Short: "Create a new bug.", PreRunE: loadRepo, RunE: runAddBug, } diff --git a/commands/bridge.go b/commands/bridge.go index a473776d..2566fd06 100644 --- a/commands/bridge.go +++ b/commands/bridge.go @@ -31,7 +31,7 @@ func runBridge(cmd *cobra.Command, args []string) error { var bridgeCmd = &cobra.Command{ Use: "bridge", - Short: "Configure and use bridges to other bug trackers", + Short: "Configure and use bridges to other bug trackers.", PreRunE: loadRepo, RunE: runBridge, Args: cobra.NoArgs, diff --git a/commands/bridge_configure.go b/commands/bridge_configure.go index ef499f1f..ce10d9af 100644 --- a/commands/bridge_configure.go +++ b/commands/bridge_configure.go @@ -91,7 +91,7 @@ func promptName() (string, error) { var bridgeConfigureCmd = &cobra.Command{ Use: "configure", - Short: "Configure a new bridge", + Short: "Configure a new bridge.", PreRunE: loadRepo, RunE: runBridgeConfigure, } diff --git a/commands/bridge_pull.go b/commands/bridge_pull.go index 669a6713..9b251479 100644 --- a/commands/bridge_pull.go +++ b/commands/bridge_pull.go @@ -38,7 +38,7 @@ func runBridgePull(cmd *cobra.Command, args []string) error { var bridgePullCmd = &cobra.Command{ Use: "pull [<name>]", - Short: "Pull updates", + Short: "Pull updates.", PreRunE: loadRepo, RunE: runBridgePull, } diff --git a/commands/bridge_rm.go b/commands/bridge_rm.go index 172fc0d8..80a831ff 100644 --- a/commands/bridge_rm.go +++ b/commands/bridge_rm.go @@ -25,7 +25,7 @@ func runBridgeRm(cmd *cobra.Command, args []string) error { var bridgeRmCmd = &cobra.Command{ Use: "rm name <name>", - Short: "Delete a configured bridge", + Short: "Delete a configured bridge.", PreRunE: loadRepo, RunE: runBridgeRm, Args: cobra.ExactArgs(1), diff --git a/commands/commands.go b/commands/commands.go index e48cd542..a30c38a5 100644 --- a/commands/commands.go +++ b/commands/commands.go @@ -61,7 +61,7 @@ func runCommands(cmd *cobra.Command, args []string) error { var commandsCmd = &cobra.Command{ Use: "commands [<option>...]", - Short: "Display available commands", + Short: "Display available commands.", RunE: runCommands, } diff --git a/commands/comment.go b/commands/comment.go index 89378da3..3d5fe4eb 100644 --- a/commands/comment.go +++ b/commands/comment.go @@ -46,7 +46,7 @@ func commentsTextOutput(comments []bug.Comment) { var commentCmd = &cobra.Command{ Use: "comment [<id>]", - Short: "Display or add comments", + Short: "Display or add comments.", PreRunE: loadRepo, RunE: runComment, } diff --git a/commands/comment_add.go b/commands/comment_add.go index 80955da5..9bb24086 100644 --- a/commands/comment_add.go +++ b/commands/comment_add.go @@ -56,7 +56,7 @@ func runCommentAdd(cmd *cobra.Command, args []string) error { var commentAddCmd = &cobra.Command{ Use: "add [<id>]", - Short: "Add a new comment", + Short: "Add a new comment.", PreRunE: loadRepo, RunE: runCommentAdd, } diff --git a/commands/deselect.go b/commands/deselect.go index 210f158c..f92c81fd 100644 --- a/commands/deselect.go +++ b/commands/deselect.go @@ -25,7 +25,7 @@ func runDeselect(cmd *cobra.Command, args []string) error { var deselectCmd = &cobra.Command{ Use: "deselect", - Short: "Clear the implicitly selected bug", + Short: "Clear the implicitly selected bug.", Example: `git bug select 2f15 git bug comment git bug status diff --git a/commands/label.go b/commands/label.go index 58ccc299..4f15c893 100644 --- a/commands/label.go +++ b/commands/label.go @@ -33,7 +33,7 @@ func runLabel(cmd *cobra.Command, args []string) error { var labelCmd = &cobra.Command{ Use: "label [<id>]", - Short: "Display, add or remove labels", + Short: "Display, add or remove labels.", PreRunE: loadRepo, RunE: runLabel, } diff --git a/commands/label_add.go b/commands/label_add.go index 2b808311..b936bc37 100644 --- a/commands/label_add.go +++ b/commands/label_add.go @@ -37,7 +37,7 @@ func runLabelAdd(cmd *cobra.Command, args []string) error { var labelAddCmd = &cobra.Command{ Use: "add [<id>] <label>[...]", - Short: "Add a label", + Short: "Add a label.", PreRunE: loadRepo, RunE: runLabelAdd, } diff --git a/commands/label_rm.go b/commands/label_rm.go index 6b48fe72..c03a20d9 100644 --- a/commands/label_rm.go +++ b/commands/label_rm.go @@ -37,7 +37,7 @@ func runLabelRm(cmd *cobra.Command, args []string) error { var labelRmCmd = &cobra.Command{ Use: "rm [<id>] <label>[...]", - Short: "Remove a label", + Short: "Remove a label.", PreRunE: loadRepo, RunE: runLabelRm, } diff --git a/commands/ls-labels.go b/commands/ls-labels.go index ef2c95bc..5610fb56 100644 --- a/commands/ls-labels.go +++ b/commands/ls-labels.go @@ -27,7 +27,7 @@ func runLsLabel(cmd *cobra.Command, args []string) error { var lsLabelCmd = &cobra.Command{ Use: "ls-label", - Short: "List valid labels", + Short: "List valid labels.", Long: `List valid labels. Note: in the future, a proper label policy could be implemented where valid labels are defined in a configuration file. Until that, the default behavior is to return the list of labels already used.`, diff --git a/commands/ls.go b/commands/ls.go index f641b58a..75b7ceaf 100644 --- a/commands/ls.go +++ b/commands/ls.go @@ -131,7 +131,7 @@ func lsQueryFromFlags() (*cache.Query, error) { var lsCmd = &cobra.Command{ Use: "ls [<query>]", - Short: "List bugs", + Short: "List bugs.", Long: `Display a summary of each bugs. You can pass an additional query to filter and order the list. This query can be expressed either with a simple query language or with flags.`, diff --git a/commands/pull.go b/commands/pull.go index 67c2a339..d2d75f3f 100644 --- a/commands/pull.go +++ b/commands/pull.go @@ -54,7 +54,7 @@ func runPull(cmd *cobra.Command, args []string) error { // showCmd defines the "push" subcommand. var pullCmd = &cobra.Command{ Use: "pull [<remote>]", - Short: "Pull bugs update from a git remote", + Short: "Pull bugs update from a git remote.", PreRunE: loadRepo, RunE: runPull, } diff --git a/commands/push.go b/commands/push.go index 0477be60..8f67d3c0 100644 --- a/commands/push.go +++ b/commands/push.go @@ -39,7 +39,7 @@ func runPush(cmd *cobra.Command, args []string) error { // showCmd defines the "push" subcommand. var pushCmd = &cobra.Command{ Use: "push [<remote>]", - Short: "Push bugs update to a git remote", + Short: "Push bugs update to a git remote.", PreRunE: loadRepo, RunE: runPush, } diff --git a/commands/root.go b/commands/root.go index 04bd6a83..adbf51d9 100644 --- a/commands/root.go +++ b/commands/root.go @@ -19,7 +19,7 @@ var repo repository.ClockedRepo // RootCmd represents the base command when called without any subcommands var RootCmd = &cobra.Command{ Use: rootCommandName, - Short: "A bug tracker embedded in Git", + Short: "A bug tracker embedded in Git.", Long: `git-bug is a bug tracker embedded in git. git-bug use git objects to store the bug tracking separated from the files diff --git a/commands/select.go b/commands/select.go index cc688354..6b214961 100644 --- a/commands/select.go +++ b/commands/select.go @@ -41,7 +41,7 @@ func runSelect(cmd *cobra.Command, args []string) error { var selectCmd = &cobra.Command{ Use: "select <id>", - Short: "Select a bug for implicit use in future commands", + Short: "Select a bug for implicit use in future commands.", Example: `git bug select 2f15 git bug comment git bug status diff --git a/commands/show.go b/commands/show.go index 3adc8b52..c62db1a1 100644 --- a/commands/show.go +++ b/commands/show.go @@ -113,7 +113,7 @@ func runShowBug(cmd *cobra.Command, args []string) error { var showCmd = &cobra.Command{ Use: "show [<id>]", - Short: "Display the details of a bug", + Short: "Display the details of a bug.", PreRunE: loadRepo, RunE: runShowBug, } diff --git a/commands/status.go b/commands/status.go index 7928628a..4675195d 100644 --- a/commands/status.go +++ b/commands/status.go @@ -31,7 +31,7 @@ func runStatus(cmd *cobra.Command, args []string) error { var statusCmd = &cobra.Command{ Use: "status [<id>]", - Short: "Display or change a bug status", + Short: "Display or change a bug status.", PreRunE: loadRepo, RunE: runStatus, } diff --git a/commands/status_close.go b/commands/status_close.go index 03618cc6..94d05ddf 100644 --- a/commands/status_close.go +++ b/commands/status_close.go @@ -30,7 +30,7 @@ func runStatusClose(cmd *cobra.Command, args []string) error { var closeCmd = &cobra.Command{ Use: "close [<id>]", - Short: "Mark a bug as closed", + Short: "Mark a bug as closed.", PreRunE: loadRepo, RunE: runStatusClose, } diff --git a/commands/status_open.go b/commands/status_open.go index f19847db..9a2b76ab 100644 --- a/commands/status_open.go +++ b/commands/status_open.go @@ -30,7 +30,7 @@ func runStatusOpen(cmd *cobra.Command, args []string) error { var openCmd = &cobra.Command{ Use: "open [<id>]", - Short: "Mark a bug as open", + Short: "Mark a bug as open.", PreRunE: loadRepo, RunE: runStatusOpen, } diff --git a/commands/termui.go b/commands/termui.go index abfd165f..19a1397a 100644 --- a/commands/termui.go +++ b/commands/termui.go @@ -20,7 +20,7 @@ func runTermUI(cmd *cobra.Command, args []string) error { var termUICmd = &cobra.Command{ Use: "termui", - Short: "Launch the terminal UI", + Short: "Launch the terminal UI.", PreRunE: loadRepoEnsureUser, RunE: runTermUI, } diff --git a/commands/title.go b/commands/title.go index c9157a70..f9b7542b 100644 --- a/commands/title.go +++ b/commands/title.go @@ -31,7 +31,7 @@ func runTitle(cmd *cobra.Command, args []string) error { var titleCmd = &cobra.Command{ Use: "title [<id>]", - Short: "Display or change a title", + Short: "Display or change a title.", PreRunE: loadRepo, RunE: runTitle, } diff --git a/commands/title_edit.go b/commands/title_edit.go index 8848e7a8..e95c77d0 100644 --- a/commands/title_edit.go +++ b/commands/title_edit.go @@ -54,7 +54,7 @@ func runTitleEdit(cmd *cobra.Command, args []string) error { var titleEditCmd = &cobra.Command{ Use: "edit [<id>]", - Short: "Edit a title", + Short: "Edit a title.", PreRunE: loadRepo, RunE: runTitleEdit, } diff --git a/commands/user.go b/commands/user.go index 64482555..daf9e654 100644 --- a/commands/user.go +++ b/commands/user.go @@ -43,7 +43,7 @@ func runUser(cmd *cobra.Command, args []string) error { var userCmd = &cobra.Command{ Use: "user [<id>]", - Short: "Display or change the user identity", + Short: "Display or change the user identity.", PreRunE: loadRepo, RunE: runUser, } diff --git a/commands/user_create.go b/commands/user_create.go index 00ec5b9b..037d79b2 100644 --- a/commands/user_create.go +++ b/commands/user_create.go @@ -70,7 +70,7 @@ func runUserCreate(cmd *cobra.Command, args []string) error { var userCreateCmd = &cobra.Command{ Use: "create", - Short: "Create a new identity", + Short: "Create a new identity.", PreRunE: loadRepo, RunE: runUserCreate, } diff --git a/commands/user_list.go b/commands/user_list.go index 4d6e5e12..63717ce3 100644 --- a/commands/user_list.go +++ b/commands/user_list.go @@ -33,7 +33,7 @@ func runUserLs(cmd *cobra.Command, args []string) error { var userLsCmd = &cobra.Command{ Use: "ls", - Short: "List identities", + Short: "List identities.", PreRunE: loadRepo, RunE: runUserLs, } diff --git a/commands/version.go b/commands/version.go index b4dc008e..05016a0b 100644 --- a/commands/version.go +++ b/commands/version.go @@ -41,7 +41,7 @@ func runVersionCmd(cmd *cobra.Command, args []string) { var versionCmd = &cobra.Command{ Use: "version", - Short: "Show git-bug version information", + Short: "Show git-bug version information.", Run: runVersionCmd, } diff --git a/commands/webui.go b/commands/webui.go index e2a3265c..f86616d5 100644 --- a/commands/webui.go +++ b/commands/webui.go @@ -224,7 +224,7 @@ func (gufh *gitUploadFileHandler) ServeHTTP(rw http.ResponseWriter, r *http.Requ var webUICmd = &cobra.Command{ Use: "webui", - Short: "Launch the web UI", + Short: "Launch the web UI.", PreRunE: loadRepo, RunE: runWebUI, } 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/md/git-bug.md b/doc/md/git-bug.md index a5f61032..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,23 +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 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 +* [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_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_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_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 index f6a3d91b..8121b750 100644 --- a/doc/md/git-bug_user.md +++ b/doc/md/git-bug_user.md @@ -1,10 +1,10 @@ ## git-bug user -Display or change the user identity +Display or change the user identity. ### Synopsis -Display or change the user identity +Display or change the user identity. ``` git-bug user [<id>] [flags] @@ -18,7 +18,8 @@ git-bug user [<id>] [flags] ### SEE ALSO -* [git-bug](git-bug.md) - A bug tracker embedded in Git -* [git-bug user create](git-bug_user_create.md) - Create a new identity -* [git-bug user ls](git-bug_user_ls.md) - List identities +* [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_create.md b/doc/md/git-bug_user_create.md index 55a1159c..8af6e37a 100644 --- a/doc/md/git-bug_user_create.md +++ b/doc/md/git-bug_user_create.md @@ -1,10 +1,10 @@ ## git-bug user create -Create a new identity +Create a new identity. ### Synopsis -Create a new identity +Create a new identity. ``` git-bug user create [flags] @@ -18,5 +18,5 @@ git-bug user create [flags] ### SEE ALSO -* [git-bug user](git-bug_user.md) - Display or change the user identity +* [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 index 9c9651f5..9f706745 100644 --- a/doc/md/git-bug_user_ls.md +++ b/doc/md/git-bug_user_ls.md @@ -1,10 +1,10 @@ ## git-bug user ls -List identities +List identities. ### Synopsis -List identities +List identities. ``` git-bug user ls [flags] @@ -19,5 +19,5 @@ git-bug user ls [flags] ### SEE ALSO -* [git-bug user](git-bug_user.md) - Display or change the user identity +* [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. |