aboutsummaryrefslogtreecommitdiffstats
path: root/doc/man
Commit message (Collapse)AuthorAgeFilesLines
* commands: reorg into different packagesMichael Muré2022-11-2038-180/+180
|
* doc: fix incorrect indentationMichael Muré2022-10-221-1/+1
| | | | fix #905
* feat(530) make label commands consistentSteve Moyer2022-09-253-6/+6
|
* refactor(git-bug-863): merge ls-id into lsSteve Moyer2022-09-253-29/+2
| | | | | | | | The "ls" command allows filtering and sorting and already features different output formatters. Merging "ls-id" into "ls" cleans up the command hierarchy and allows users to take advantage of these querying features. Resolves #863.
* webui: add a flag to log handling errorsMichael Muré2022-08-231-0/+4
|
* docs(847): add compact to docs and bash for ls command's format flagSteve Moyer2022-08-161-1/+1
|
* update gqlgenMichael Muré2022-02-1539-292/+292
|
* CLI: Add non-interactive option to interactive commands (#651)Sascha2021-05-096-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add option to skip the AvatarURL input request Using an empty string for the avatar cli flag e.g. `git-bug user create -a ""` will still result in a prompt. As the avatar URL is an optional option, it should be possible to skip asking for it entirely. Otherwise automated user creation via a script must make use of pipe hacks. * Add global --non-interactive cmdline option * Replace --skipAvatar for --non-interactive option * Cmd BugAdd: respect non-interactive option * Cmd bridge configure: respect non-interactive opt * Cmd CommentAdd: respect non-interactive option * Cmd CommentEdit: respect non-interactive option * Cmd TermUI: respect non-interactive option * Cmd TitleEdit: respect non-interactive option * Remove global non-interactive option * Cmd UserCreate: Use local non-interactive option * Cmd BugAdd: Use local non-interactive option * Cmd BridgeConfigure: Use local non-interactive option * Cmd CommentAdd: Use local non-interactive option * Cmd CommentEdit: Use local non-interactive option * Cmd TermUI: Drop non-interactive option It should be obviouse that the termui is an interactive command. * Cmd TitleEdit: Use local non-interactive option * Update docs * Bridge GitHub: respect non-interactive option * Bridge GitLab: respect non-interactive option * Bridge Jira: respect non-interactive and token opt * Fix failing compilation * Bridge launchpad: respect non-interactive option * bridge: isNonInteractive --> interactive Co-authored-by: Michael Muré <batolettre@gmail.com>
* CLI - allow user create without prompt (#650)Hariharan2021-04-251-0/+12
| | | | | | | | | | | * CLI - allow user create without prompt. Fixes #577 * Update commands/user_create.go email message Co-authored-by: Michael Muré <batolettre@gmail.com> * Update docs Co-authored-by: Michael Muré <batolettre@gmail.com>
* Merge remote-tracking branch 'origin/master' into dag-entityMichael Muré2021-03-292-1/+13
|\
| * commands: minor fixes for the webui open with queryMichael Muré2021-03-071-2/+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-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | '--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/+4
| | | | | | | | | | | | | | | | | | | | | | | | 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>.
* | minor cleanupsMichael Muré2021-02-141-1/+1
| |
* | Change the comment ID to use both bug and comment ID references.vince2021-02-142-1/+36
| | | | | | | | | | Add comment edit command This commit adds the comment edit command, which provides a CLI tool that allows a user to edit a comment.
* | deal with the previous changesMichael Muré2021-02-141-1/+1
|/
* Update docs for full text searchMike Goldin2020-11-171-1/+7
|
* Vendor: upgrade spf13/cobra to v1.1.1 (#479)65432020-10-2738-76/+38
| | | | | | | * 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-2826-26/+54
|
* commands: refactor to avoid globalsMichael Muré2020-06-281-4/+4
|
* Add support for read-only mode for web UI.Luke Granger-Brown2020-06-271-0/+4
| | | | Fixes #402.
* cmds: cleanup and re-generate filesMichael Muré2020-06-243-3/+11
|
* Merge pull request #403 from MichaelMure/ls-dumpVincent Tiu2020-06-181-0/+4
|\ | | | | [ls] add support for different output formats
| * 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'.
* | doc: fix typosMartin Michlmayr2020-06-161-1/+1
|/
* DOC: commands/root.go: syntaxWes Turner2020-05-011-1/+1
|
* update auto-generated filesMichael Muré2020-02-2337-212/+175
|
* update auto-generated filesMichael Muré2020-02-232-2/+2
|
* bridges: massive refactorMichael Muré2020-02-151-10/+15
| | | | | | - 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-4/+4
|
* github: tiny cleanups of the configuratorMichael Muré2019-11-261-0/+4
|
* cli: rename "token" into "auth"Michael Muré2019-11-106-42/+42
|
* cli: add bridge token showMichael Muré2019-11-103-4/+33
|
* bridge: various improvement on the global token PRMichael Muré2019-11-102-13/+5
|
* token: regenerate documentation and fix importsamine2019-11-091-6/+0
|
* tokens: use a hash as token identifier instead of the token it selfamine2019-11-093-0/+105
|
* bridge: various cleanupsMichael Muré2019-11-091-1/+1
|
* bridge: improvement on the import resume featureMichael Muré2019-11-031-2/+2
|
* commands: support bridge imports after a given date and resumable importsamine2019-11-031-0/+8
|
* doc/man: update generated documentationsAmine Hilaly2019-08-311-2/+9
|
* commands: add bridge configure completion scriptsAmine Hilaly2019-08-311-0/+4
|
* bridge: update generated docsAmine Hilaly2019-07-231-1/+1
|
* [misc] update man docs and completion scriptsAmine Hilaly2019-06-242-1/+30
| | | | | | [cache] BugCache: Fix set metadata raw [bridge/github] Fix graphql input objects
* misc: generate PowerShell command completionMichael Muré2019-06-231-1/+1
|
* rename GITHUB_TOKEN to GITHUB_PRIVATE_TOKENAmine Hilaly2019-06-072-5/+5
|
* Update man pages and bash_completionAmine Hilaly2019-05-292-2/+87
|
* commands: add flags/config to control the automatic opening in the default ↵Michael Muré2019-05-271-1/+13
| | | | browser