aboutsummaryrefslogtreecommitdiffstats
path: root/commands/label.go
Commit message (Collapse)AuthorAgeFilesLines
* fix(commands): create env.Env once for all Cobra commandsSteve Moyer2023-01-171-3/+1
| | | | Resolves #996
* cache: tie up the refactor up to compilingMichael Muré2022-12-211-1/+1
|
* commands: reorg into different packagesMichael Muré2022-11-201-21/+14
|
* feat(530) make label commands consistentSteve Moyer2022-09-251-1/+2
|
* Add command-specific argument completionsJohannes Altmanninger2022-05-011-0/+1
| | | | | | | | | | | | | | | | | | | | | | Complete bug IDs, bridges, users, labels where appropriate. This works in bash and fish. ZSH is not yet supported by Cobra. In fish, descriptions (the part of a completion after the "\t") are shown as completion label, and can be searched with Ctrl+S. Reproduce with fish -C 'source misc/fish_completion/git-bug' git bug select ^I (tested with fish version 3.3.1) Also works with bash, but only for "git-bug" (with the dash) bash --rcfile <(echo source misc/bash_completion/git-bug) git-bug select ^I Closes #493
* commands: proper backend close on RunE errorMichael Muré2021-05-091-6/+5
|
* commands: cleanup the command's usage to avoid warnings when generating the docMichael Muré2020-07-281-2/+2
|
* commands: open and close the backend in a single place, simplify commandsMichael Muré2020-06-281-13/+5
|
* commands: refactor to avoid globalsMichael Muré2020-06-281-18/+22
|
* Select and Label command documentationJocelyn FACCHINI2019-03-231-1/+1
| | | | | | - 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.
* commands: add a "." at the end of Short commands usageMichael Muré2019-03-011-1/+1
|
* moved cleaner function to util/interruptRafael Passos2018-10-241-2/+2
|
* Registering lock clearing functions to CleanerRafael Passos2018-10-231-0/+2
|
* commands: don't load the repo for commands that don't need itMichael Muré2018-10-171-3/+4
| | | | fix #67
* commands: description cleanupMichael Muré2018-09-211-1/+1
|
* commands: convert compatible commands to the implicit select mechanismMichael Muré2018-09-181-13/+3
|
* commands: make "label" display the current labelsMichael Muré2018-09-171-42/+10
|
* operations: return a more convenient array of result for label changesMichael Muré2018-09-131-2/+21
|
* ls: support expressing a query with flags as wellMichael Muré2018-09-101-0/+2
|
* cmds: various cleaningMichael Muré2018-09-061-1/+1
|
* make CLI commands use the cache to lock the repo properlyMichael Muré2018-08-311-11/+10
|
* cleanup go importsMichael Muré2018-08-131-1/+2
|
* more refactoring to have reusable bug action across different UIMichael Muré2018-07-251-57/+13
|
* bug: refactor to limit abstraction leak and to have a more reusable code for ↵Michael Muré2018-07-231-1/+1
| | | | the UIs
* generate markdown documentationMichael Muré2018-07-201-1/+1
|
* rework all the commands to use cobra as a parserMichael Muré2018-07-191-17/+16
|
* implement label op+commandMichael Muré2018-07-181-0/+108