aboutsummaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'origin/master' into dag-entityMichael Muré2021-03-295-16/+30
|\
| * commands: minor fixes for the webui open with queryMichael Muré2021-03-072-3/+3
| | | | | | | | | | | | - go fmt - add a shorthand - fix displayed webUI URL in the terminal
| * webui: allow specifying the initial queryMiklos Vajna2021-03-072-6/+11
| | | | | | | | | | | | | | | | | | | | | | | | 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-282-6/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | '--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.
| * Merge pull request #568 from vmiklos/search-metadataMichael Muré2021-02-272-0/+5
| |\ | | | | | | Add ability to search by arbitrary metadata
| | * Add ability to search by arbitrary metadataMiklos Vajna2021-02-212-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>.
| * | doc: cleanup query documentationMichael Muré2021-02-201-10/+9
| |/
* | minor cleanupsMichael Muré2021-02-142-2/+2
| |
* | Change the comment ID to use both bug and comment ID references.vince2021-02-144-1/+57
| | | | | | | | | | 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-142-2/+2
|/
* repo: finish RepoStorage moveMichael Muré2020-12-081-3/+2
|
* Update docs for full text searchMike Goldin2020-11-172-2/+14
|
* Vendor: upgrade spf13/cobra to v1.1.1 (#479)65432020-10-2769-200/+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
* doc: generate concurrentlyMichael Muré2020-09-271-19/+21
|
* commands: cleanup the command's usage to avoid warnings when generating the docMichael Muré2020-07-2852-51/+102
|
* typos and minor readme fixMichael Muré2020-07-151-1/+1
|
* commands: refactor to avoid globalsMichael Muré2020-06-283-7/+7
|
* Add support for read-only mode for web UI.Luke Granger-Brown2020-06-272-4/+9
| | | | Fixes #402.
* cmds: cleanup and re-generate filesMichael Muré2020-06-246-7/+17
|
* Merge pull request #403 from MichaelMure/ls-dumpVincent Tiu2020-06-182-0/+5
|\ | | | | [ls] add support for different output formats
| * ls: Add support to ls dump bug information in specific formatsvince2020-06-162-0/+5
| | | | | | | | 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-163-12/+12
|/
* generate docs and completion concurrently for a faster "make"Michael Muré2020-06-143-82/+83
|
* DOC: commands/root.go: syntaxWes Turner2020-05-012-2/+2
|
* github-howto: change titleMichael Muré2020-03-011-1/+1
|
* howto: link to other ressourcesMichael Muré2020-03-011-0/+11
|
* doc: refresh the github howtoMichael Muré2020-03-011-2/+10
|
* doc: fix typosMichael Muré2020-03-011-2/+2
|
* add a how-to to explain usage with GithubMichael Muré2020-03-011-0/+61
|
* update auto-generated filesMichael Muré2020-02-2337-212/+175
|
* update auto-generated filesMichael Muré2020-02-234-4/+4
|
* Merge remote-tracking branch 'origin/master' into cheshirekow-jiraMichael Muré2020-02-154-23/+30
|\
| * bridges: massive refactorMichael Muré2020-02-152-19/+26
| | | | | | | | | | | | - automatic flag validation and warning - generalized prompt - cleanups
* | Merge remote-tracking branch 'origin/master' into cheshirekow-jiraMichael Muré2020-02-092-0/+10
|\|
| * it compiles \o/Michael Muré2020-02-082-0/+10
| |
* | repair after rebaseJosh Bialkowski2019-12-181-1/+1
| |
* | codereview #5: reverse-map and ImportWarningJosh Bialkowski2019-12-181-1/+14
| | | | | | | | | | | | | | | | | | | | | | * Fix git config reader can't read values with spaces * Add bug-id-revmap config option for the reverse map, and use this in the importer * Add NewImportWarning for things that aren't exactly errors. Use this for unhandled changelog events. * Add NewExportWarning for things that aren't exactly errors. Use this for un-exportable status changes. * Strip newlines from titles on import
* | codereview #2: some cleanup, correct use of nothing-eventsJosh Bialkowski2019-12-181-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * return error, don't panic * skipping status export is an error * use switch in config.go * move PromptPassword to input * move client construction into getIdentityClient * use non-pointer context throughout client since it is an interface * remove some TODOs * don't emit multiple nothing-events, just one per bug only if nothing happened. * rename EditBody to EditCreateComment * add configuration notes about additional values * store bug id map in a dictionary in the config * some fixes from testing
* | Implement jira bridgeJosh Bialkowski2019-12-184-3/+368
|/
* bridge/gitlab: support self-hosted GitLab instanceamine2019-12-102-0/+5
|
* bridge: huge refactor to accept multiple kind of credentialsMichael Muré2019-12-082-13/+13
|
* github: tiny cleanups of the configuratorMichael Muré2019-11-262-8/+13
|
* cli: rename "token" into "auth"Michael Muré2019-11-1015-135/+135
|
* cli: add bridge token showMichael Muré2019-11-106-8/+60
|
* bridge: various improvement on the global token PRMichael Muré2019-11-106-26/+15
|
* token: regenerate documentation and fix importsamine2019-11-092-11/+3
|
* tokens: use a hash as token identifier instead of the token it selfamine2019-11-097-1/+180
|
* bridge: various cleanupsMichael Muré2019-11-092-1/+2
|
* bridge: improvement on the import resume featureMichael Muré2019-11-032-5/+5
|
* commands: support bridge imports after a given date and resumable importsamine2019-11-032-1/+11
|