aboutsummaryrefslogtreecommitdiffstats
path: root/misc/bash_completion
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'origin/master' into dag-entityMichael Muré2021-03-291-0/+16
|\
| * commands: minor fixes for the webui open with queryMichael Muré2021-03-071-0/+2
| | | | | | | | | | | | - go fmt - add a shorthand - fix displayed webUI URL in the terminal
| * webui: allow specifying the initial queryMiklos Vajna2021-03-071-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | Example use-case: given a github URL in a source code comment or commit message, one can now run: git bug webui --query 'metadata:github-url:"https://github.com/author/myproject/issues/42"' on the commandline to look up the details of that issue on the web ui quickly, offline. Fixes <https://github.com/MichaelMure/git-bug/issues/592>.
| * Add option to specify host addressSascha2021-02-281-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | '--host'-cmdline-option is added to the webui command. Previously, the WebUI couldn't be hosted inside of a container. As the WebUI-server only listend per default to localhost and there was no option to change the address, the server should listend to. This means, that the WebUI was only reachable from localhost. So only from inside of the container but never from outside. The '--host'-option allows to set the IP address or a hostname which the WebUI-server should listen to. E.g. by setting 0.0.0.0 or :: as address. Update documentation for new option. Update shell completion for new option. Compilation seems to add another go-gitlab version.
| * Add ability to search by arbitrary metadataMiklos Vajna2021-02-211-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | Example: ~/git/git-bug/git-bug ls --metadata github-url=https://github.com/author/myproject/issues/42 or ~/git/git-bug/git-bug ls metadata:github-url:\"https://github.com/author/myproject/issues/42\" Fixes the cmdline part of <https://github.com/MichaelMure/git-bug/issues/567>.
* | Change the comment ID to use both bug and comment ID references.vince2021-02-141-0/+33
|/ | | | | Add comment edit command This commit adds the comment edit command, which provides a CLI tool that allows a user to edit a comment.
* Vendor: upgrade spf13/cobra to v1.1.1 (#479)65432020-10-271-5/+107
| | | | | | | * build(deps): bump github.com/spf13/cobra from 1.0.0 to 1.1.1 * update doc (man & md) * update bash|fish|zsh completion
* commands: cleanup the command's usage to avoid warnings when generating the docMichael Muré2020-07-281-0/+21
|
* Add support for read-only mode for web UI.Luke Granger-Brown2020-06-271-0/+2
| | | | Fixes #402.
* cmds: cleanup and re-generate filesMichael Muré2020-06-241-1/+8
|
* ls: Add support to ls dump bug information in specific formatsvince2020-06-161-0/+4
| | | | This adds an optional flag to the ls command that allows users to specify the format they wish to dump the output as. Currently, supported parameters are 'default', 'plain' and 'json'.
* update cobraMichael Muré2020-06-141-0/+66
|
* update auto-generated filesMichael Muré2020-02-231-4/+11
|
* bridges: massive refactorMichael Muré2020-02-151-4/+8
| | | | | | - automatic flag validation and warning - generalized prompt - cleanups
* it compiles \o/Michael Muré2020-02-081-0/+8
|
* bridge/gitlab: support self-hosted GitLab instanceamine2019-12-101-0/+4
|
* bridge: huge refactor to accept multiple kind of credentialsMichael Muré2019-12-081-5/+4
|
* github: tiny cleanups of the configuratorMichael Muré2019-11-261-0/+4
|
* cli: rename "token" into "auth"Michael Muré2019-11-101-49/+49
|
* cli: add bridge token showMichael Muré2019-11-101-0/+21
|
* bridge: various improvement on the global token PRMichael Muré2019-11-101-10/+0
|
* token: regenerate documentation and fix importsamine2019-11-091-7/+0
|
* bridge: various cleanupsMichael Muré2019-11-091-0/+84
|
* commands: support bridge imports after a given date and resumable importsamine2019-11-031-0/+7
|
* commands: add bridge configure completion scriptsAmine Hilaly2019-08-311-0/+2
|
* commands: add a "tui" alias for "termui"Michael Muré2019-08-311-0/+4
|
* [misc] update man docs and completion scriptsAmine Hilaly2019-06-241-0/+21
| | | | | | [cache] BugCache: Fix set metadata raw [bridge/github] Fix graphql input objects
* Update man pages and bash_completionAmine Hilaly2019-05-291-0/+24
|
* commands: add flags/config to control the automatic opening in the default ↵Michael Muré2019-05-271-2/+31
| | | | browser
* commands: fix ls not displaying the new Identities properlyMichael Muré2019-04-111-0/+6
|
* commands: add a --field flag to "git bug user" to display users details ↵Michael Muré2019-04-031-0/+3
| | | | individually
* cache: make the title filter case insensitiveMichael Muré2019-03-031-0/+3
|
* commands: show the last modification time in "user"Michael Muré2019-03-011-3/+0
|
* commands: add a "user adopt" command to use an existing identityMichael Muré2019-03-011-0/+21
|
* commands: add a super-fast "user ls" commandMichael Muré2019-03-011-0/+24
|
* identity: work on higher level now, cache, first two identity commandsMichael Muré2019-03-011-21/+42
|
* identity: more progress and fixesMichael Muré2019-03-011-0/+21
|
* Merge pull request #97 from sladyn98/ls_id_branchMichael Muré2019-02-251-0/+21
|\ | | | | A command to list matching bug id from a prefix
| * ls-id.go: Add ls-id [<prefix>] commandSladyn2019-02-141-0/+21
| | | | | | | | | | | | | | | | This file adds the ls-id command which returns the bug id matching the prefix the user enters. If no prefix entered it lists all the BugId's Closes https://github.com/MichaelMure/git-bug/issues/47
* | add a "version" command with various outputs, including the git hash and tagMichael Muré2019-02-201-0/+30
|/
* commands: show: change for a single valued --field flagMichael Muré2019-01-071-0/+3
|
* commands: fix "comment add" flags set on the wrong commandMichael Muré2018-10-171-6/+6
|
* commands: add a "deselect" command to deselect a previously selected bugMichael Muré2018-09-261-0/+21
|
* commands: add "bridge pull"Michael Muré2018-09-241-0/+21
|
* commands: add "bridge rm"Michael Muré2018-09-241-0/+21
|
* commands: add the "bridge" and "bridge configure" commandsMichael Muré2018-09-241-0/+42
|
* commands: add a "ls-labels" command that output valid labelsMichael Muré2018-09-211-0/+21
|
* commands: add a "select" command to select a bug for future implicit useMichael Muré2018-09-181-0/+21
|
* commands: add a "label rm" command to remove labels from a bugMichael Muré2018-09-171-0/+21
|
* commands: add a "label add" command to add new label to a bugMichael Muré2018-09-171-0/+21
|