Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add command-specific argument completions | Johannes Altmanninger | 2022-05-01 | 1 | -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 error | Michael Muré | 2021-05-09 | 1 | -7/+6 |
| | |||||
* | commands: cleanup the command's usage to avoid warnings when generating the doc | Michael Muré | 2020-07-28 | 1 | -1/+1 |
| | |||||
* | Update docs | vince | 2020-07-28 | 1 | -1/+1 |
| | |||||
* | Remove need to specify remote | vince | 2020-07-28 | 1 | -9/+5 |
| | | | | This commit makes the removeBug command use the listRefs repo command to search for the bug, eliminating the need to input the remote the bug came from. | ||||
* | Move args parsing out of repo cache | vince | 2020-07-28 | 1 | -1/+11 |
| | |||||
* | Allow user to delete remote bugs | vince | 2020-07-28 | 1 | -15/+7 |
| | |||||
* | Add the 'rm' command | vince | 2020-07-28 | 1 | -0/+45 |
This commit adds a command that removes a bug from the repository, given a prefix. |