commands/comment.go 🔗
@@ -44,7 +44,7 @@ func commentsTextOutput(comments []bug.Comment) {
var commentCmd = &cobra.Command{
Use: "comment [<id>]",
- Short: "Show a bug's comments",
+ Short: "Display or add comments",
RunE: runComment,
}
Michael Muré created
commands/comment.go | 2 +-
commands/comment_add.go | 2 +-
commands/label add.go | 2 +-
commands/label rm.go | 2 +-
commands/label.go | 2 +-
commands/root.go | 4 ++--
commands/status.go | 2 +-
commands/status_close.go | 2 +-
commands/status_open.go | 2 +-
commands/title.go | 2 +-
commands/title_edit.go | 2 +-
doc/man/git-bug-comment-add.1 | 4 ++--
doc/man/git-bug-comment.1 | 4 ++--
doc/man/git-bug-label-add.1 | 4 ++--
doc/man/git-bug-label-rm.1 | 4 ++--
doc/man/git-bug-label.1 | 4 ++--
doc/man/git-bug-status-close.1 | 4 ++--
doc/man/git-bug-status-open.1 | 4 ++--
doc/man/git-bug-status.1 | 4 ++--
doc/man/git-bug-title-edit.1 | 4 ++--
doc/man/git-bug-title.1 | 4 ++--
doc/man/git-bug.1 | 4 ++--
doc/md/git-bug.md | 12 ++++++------
doc/md/git-bug_add.md | 2 +-
doc/md/git-bug_commands.md | 2 +-
doc/md/git-bug_comment.md | 8 ++++----
doc/md/git-bug_comment_add.md | 6 +++---
doc/md/git-bug_label.md | 10 +++++-----
doc/md/git-bug_label_add.md | 6 +++---
doc/md/git-bug_label_rm.md | 6 +++---
doc/md/git-bug_ls.md | 2 +-
doc/md/git-bug_pull.md | 2 +-
doc/md/git-bug_push.md | 2 +-
doc/md/git-bug_select.md | 2 +-
doc/md/git-bug_show.md | 2 +-
doc/md/git-bug_status.md | 10 +++++-----
doc/md/git-bug_status_close.md | 6 +++---
doc/md/git-bug_status_open.md | 6 +++---
doc/md/git-bug_termui.md | 2 +-
doc/md/git-bug_title.md | 8 ++++----
doc/md/git-bug_title_edit.md | 6 +++---
doc/md/git-bug_webui.md | 2 +-
42 files changed, 85 insertions(+), 85 deletions(-)
@@ -44,7 +44,7 @@ func commentsTextOutput(comments []bug.Comment) {
var commentCmd = &cobra.Command{
Use: "comment [<id>]",
- Short: "Show a bug's comments",
+ Short: "Display or add comments",
RunE: runComment,
}
@@ -54,7 +54,7 @@ func runCommentAdd(cmd *cobra.Command, args []string) error {
var commentAddCmd = &cobra.Command{
Use: "add [<id>]",
- Short: "Add a new comment to a bug",
+ Short: "Add a new comment",
RunE: runCommentAdd,
}
@@ -35,7 +35,7 @@ func runLabelAdd(cmd *cobra.Command, args []string) error {
var labelAddCmd = &cobra.Command{
Use: "add [<id>] <label>[...]",
- Short: "Add a label to a bug",
+ Short: "Add a label",
RunE: runLabelAdd,
}
@@ -35,7 +35,7 @@ func runLabelRm(cmd *cobra.Command, args []string) error {
var labelRmCmd = &cobra.Command{
Use: "rm [<id>] <label>[...]",
- Short: "Remove a label from a bug",
+ Short: "Remove a label",
RunE: runLabelRm,
}
@@ -31,7 +31,7 @@ func runLabel(cmd *cobra.Command, args []string) error {
var labelCmd = &cobra.Command{
Use: "label [<id>]",
- Short: "Display a bug labels",
+ Short: "Display, add or remove labels",
RunE: runLabel,
}
@@ -20,8 +20,8 @@ var RootCmd = &cobra.Command{
Version: "0.3.0",
Use: rootCommandName,
- Short: "A bugtracker embedded in Git",
- Long: `git-bug is a bugtracker embedded in git.
+ Short: "A bug tracker embedded in Git",
+ Long: `git-bug is a bug tracker embedded in git.
It use the same internal storage so it doesn't pollute your project. As you would do with commits and branches, you can push your bugs to the same git remote your are already using to collaborate with other peoples.`,
@@ -29,7 +29,7 @@ func runStatus(cmd *cobra.Command, args []string) error {
var statusCmd = &cobra.Command{
Use: "status [<id>]",
- Short: "Show the bug status",
+ Short: "Display or change a bug status",
RunE: runStatus,
}
@@ -28,7 +28,7 @@ func runStatusClose(cmd *cobra.Command, args []string) error {
var closeCmd = &cobra.Command{
Use: "close [<id>]",
- Short: "Mark the bug as closed",
+ Short: "Mark a bug as closed",
RunE: runStatusClose,
}
@@ -28,7 +28,7 @@ func runStatusOpen(cmd *cobra.Command, args []string) error {
var openCmd = &cobra.Command{
Use: "open [<id>]",
- Short: "Mark the bug as open",
+ Short: "Mark a bug as open",
RunE: runStatusOpen,
}
@@ -29,7 +29,7 @@ func runTitle(cmd *cobra.Command, args []string) error {
var titleCmd = &cobra.Command{
Use: "title [<id>]",
- Short: "Display a bug's title",
+ Short: "Display or change a title",
RunE: runTitle,
}
@@ -48,7 +48,7 @@ func runTitleEdit(cmd *cobra.Command, args []string) error {
var titleEditCmd = &cobra.Command{
Use: "edit [<id>]",
- Short: "Edit a bug title",
+ Short: "Edit a title",
RunE: runTitleEdit,
}
@@ -5,7 +5,7 @@
.SH NAME
.PP
-git\-bug\-comment\-add \- Add a new comment to a bug
+git\-bug\-comment\-add \- Add a new comment
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-comment\-add \- Add a new comment to a bug
.SH DESCRIPTION
.PP
-Add a new comment to a bug
+Add a new comment
.SH OPTIONS
@@ -5,7 +5,7 @@
.SH NAME
.PP
-git\-bug\-comment \- Show a bug's comments
+git\-bug\-comment \- Display or add comments
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-comment \- Show a bug's comments
.SH DESCRIPTION
.PP
-Show a bug's comments
+Display or add comments
.SH OPTIONS
@@ -5,7 +5,7 @@
.SH NAME
.PP
-git\-bug\-label\-add \- Add a label to a bug
+git\-bug\-label\-add \- Add a label
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-label\-add \- Add a label to a bug
.SH DESCRIPTION
.PP
-Add a label to a bug
+Add a label
.SH OPTIONS
@@ -5,7 +5,7 @@
.SH NAME
.PP
-git\-bug\-label\-rm \- Remove a label from a bug
+git\-bug\-label\-rm \- Remove a label
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-label\-rm \- Remove a label from a bug
.SH DESCRIPTION
.PP
-Remove a label from a bug
+Remove a label
.SH OPTIONS
@@ -5,7 +5,7 @@
.SH NAME
.PP
-git\-bug\-label \- Display a bug labels
+git\-bug\-label \- Display, add or remove labels
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-label \- Display a bug labels
.SH DESCRIPTION
.PP
-Display a bug labels
+Display, add or remove labels
.SH OPTIONS
@@ -5,7 +5,7 @@
.SH NAME
.PP
-git\-bug\-status\-close \- Mark the bug as closed
+git\-bug\-status\-close \- Mark a bug as closed
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-status\-close \- Mark the bug as closed
.SH DESCRIPTION
.PP
-Mark the bug as closed
+Mark a bug as closed
.SH OPTIONS
@@ -5,7 +5,7 @@
.SH NAME
.PP
-git\-bug\-status\-open \- Mark the bug as open
+git\-bug\-status\-open \- Mark a bug as open
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-status\-open \- Mark the bug as open
.SH DESCRIPTION
.PP
-Mark the bug as open
+Mark a bug as open
.SH OPTIONS
@@ -5,7 +5,7 @@
.SH NAME
.PP
-git\-bug\-status \- Show the bug status
+git\-bug\-status \- Display or change a bug status
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-status \- Show the bug status
.SH DESCRIPTION
.PP
-Show the bug status
+Display or change a bug status
.SH OPTIONS
@@ -5,7 +5,7 @@
.SH NAME
.PP
-git\-bug\-title\-edit \- Edit a bug title
+git\-bug\-title\-edit \- Edit a title
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-title\-edit \- Edit a bug title
.SH DESCRIPTION
.PP
-Edit a bug title
+Edit a title
.SH OPTIONS
@@ -5,7 +5,7 @@
.SH NAME
.PP
-git\-bug\-title \- Display a bug's title
+git\-bug\-title \- Display or change a title
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug\-title \- Display a bug's title
.SH DESCRIPTION
.PP
-Display a bug's title
+Display or change a title
.SH OPTIONS
@@ -5,7 +5,7 @@
.SH NAME
.PP
-git\-bug \- A bugtracker embedded in Git
+git\-bug \- A bug tracker embedded in Git
.SH SYNOPSIS
@@ -15,7 +15,7 @@ git\-bug \- A bugtracker embedded in Git
.SH DESCRIPTION
.PP
-git\-bug is a bugtracker embedded in git.
+git\-bug is a bug tracker embedded in git.
.PP
It use the same internal storage so it doesn't pollute your project. As you would do with commits and branches, you can push your bugs to the same git remote your are already using to collaborate with other peoples.
@@ -1,10 +1,10 @@
## git-bug
-A bugtracker embedded in Git
+A bug tracker embedded in Git
### Synopsis
-git-bug is a bugtracker embedded in git.
+git-bug is a bug tracker embedded in git.
It use the same internal storage so it doesn't pollute your project. As you would do with commits and branches, you can push your bugs to the same git remote your are already using to collaborate with other peoples.
@@ -22,15 +22,15 @@ git-bug [flags]
* [git-bug add](git-bug_add.md) - Create a new bug
* [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) - Display a bug labels
+* [git-bug comment](git-bug_comment.md) - Display or add comments
+* [git-bug label](git-bug_label.md) - Display, add or remove labels
* [git-bug ls](git-bug_ls.md) - List bugs
* [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) - Show the bug status
+* [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 a bug's title
+* [git-bug title](git-bug_title.md) - Display or change a title
* [git-bug webui](git-bug_webui.md) - Launch the web UI
@@ -21,5 +21,5 @@ git-bug add [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bugtracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git
@@ -19,5 +19,5 @@ git-bug commands [<option>...] [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bugtracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git
@@ -1,10 +1,10 @@
## git-bug comment
-Show a bug's comments
+Display or add comments
### Synopsis
-Show a bug's comments
+Display or add comments
```
git-bug comment [<id>] [flags]
@@ -20,6 +20,6 @@ git-bug comment [<id>] [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bugtracker embedded in Git
-* [git-bug comment add](git-bug_comment_add.md) - Add a new comment to a bug
+* [git-bug](git-bug.md) - A bug tracker embedded in Git
+* [git-bug comment add](git-bug_comment_add.md) - Add a new comment
@@ -1,10 +1,10 @@
## git-bug comment add
-Add a new comment to a bug
+Add a new comment
### Synopsis
-Add a new comment to a bug
+Add a new comment
```
git-bug comment add [<id>] [flags]
@@ -18,5 +18,5 @@ git-bug comment add [<id>] [flags]
### SEE ALSO
-* [git-bug comment](git-bug_comment.md) - Show a bug's comments
+* [git-bug comment](git-bug_comment.md) - Display or add comments
@@ -1,10 +1,10 @@
## git-bug label
-Display a bug labels
+Display, add or remove labels
### Synopsis
-Display a bug 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 bugtracker embedded in Git
-* [git-bug label add](git-bug_label_add.md) - Add a label to a bug
-* [git-bug label rm](git-bug_label_rm.md) - Remove a label from a bug
+* [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
@@ -1,10 +1,10 @@
## git-bug label add
-Add a label to a bug
+Add a label
### Synopsis
-Add a label to a bug
+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 a bug labels
+* [git-bug label](git-bug_label.md) - Display, add or remove labels
@@ -1,10 +1,10 @@
## git-bug label rm
-Remove a label from a bug
+Remove a label
### Synopsis
-Remove a label from a bug
+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 a bug labels
+* [git-bug label](git-bug_label.md) - Display, add or remove labels
@@ -37,5 +37,5 @@ git bug ls --status closed --by creation
### SEE ALSO
-* [git-bug](git-bug.md) - A bugtracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git
@@ -18,5 +18,5 @@ git-bug pull [<remote>] [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bugtracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git
@@ -18,5 +18,5 @@ git-bug push [<remote>] [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bugtracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git
@@ -27,5 +27,5 @@ git bug status
### SEE ALSO
-* [git-bug](git-bug.md) - A bugtracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git
@@ -18,5 +18,5 @@ git-bug show [<id>] [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bugtracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git
@@ -1,10 +1,10 @@
## git-bug status
-Show the bug status
+Display or change a bug status
### Synopsis
-Show the 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 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
+* [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
@@ -1,10 +1,10 @@
## git-bug status close
-Mark the bug as closed
+Mark a bug as closed
### Synopsis
-Mark the 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) - Show the bug status
+* [git-bug status](git-bug_status.md) - Display or change a bug status
@@ -1,10 +1,10 @@
## git-bug status open
-Mark the bug as open
+Mark a bug as open
### Synopsis
-Mark the 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) - Show the bug status
+* [git-bug status](git-bug_status.md) - Display or change a bug status
@@ -18,5 +18,5 @@ git-bug termui [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bugtracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git
@@ -1,10 +1,10 @@
## git-bug title
-Display a bug's title
+Display or change a title
### Synopsis
-Display a bug's 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 bugtracker embedded in Git
-* [git-bug title edit](git-bug_title_edit.md) - Edit a bug title
+* [git-bug](git-bug.md) - A bug tracker embedded in Git
+* [git-bug title edit](git-bug_title_edit.md) - Edit a title
@@ -1,10 +1,10 @@
## git-bug title edit
-Edit a bug title
+Edit a title
### Synopsis
-Edit a bug 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 a bug's title
+* [git-bug title](git-bug_title.md) - Display or change a title
@@ -19,5 +19,5 @@ git-bug webui [flags]
### SEE ALSO
-* [git-bug](git-bug.md) - A bugtracker embedded in Git
+* [git-bug](git-bug.md) - A bug tracker embedded in Git