diff options
author | Jocelyn FACCHINI <jocelyn.facchini@gmail.com> | 2019-03-23 16:59:40 +0000 |
---|---|---|
committer | Jocelyn FACCHINI <jocelyn.facchini@gmail.com> | 2019-03-23 16:59:40 +0000 |
commit | 146b6b8599f370284d6bbe7370e9ebeb7999f3cd (patch) | |
tree | bd7b9c13eadcf737fd0a0cfd11749ec3776d7e9b /commands/select | |
parent | 90f1089dc9c9b33bf5f3a37e0ee0414344246b05 (diff) | |
download | git-bug-146b6b8599f370284d6bbe7370e9ebeb7999f3cd.tar.gz |
Select and Label command documentation
- Informed that label command adds/removes a label to a given bug.
- Added suggestion to use select command when omitting to provide a bug id as argument.
- Added a bit more detail for the select command documentation, giving a hint to "deselect" command.
Diffstat (limited to 'commands/select')
-rw-r--r-- | commands/select/select.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/select/select.go b/commands/select/select.go index 522cc295..b080d277 100644 --- a/commands/select/select.go +++ b/commands/select/select.go @@ -16,7 +16,7 @@ import ( const selectFile = "select" -var ErrNoValidId = errors.New("you must provide a bug id") +var ErrNoValidId = errors.New("you must provide a bug id or use the \"select\" command first") // ResolveBug first try to resolve a bug using the first argument of the command // line. If it fails, it fallback to the select mechanism. |