aboutsummaryrefslogtreecommitdiffstats
path: root/misc
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'origin/master' into dag-entityMichael Muré2021-03-292-259/+239
|\
| * 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.
| * cmd: better powershell completion, thanks to cobra upgradeMichael Muré2021-02-271-253/+223
| |
| * Add ability to search by arbitrary metadataMiklos Vajna2021-02-212-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | 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>.
* | bug: migrate to the DAG entity structure!Michael Muré2021-02-141-46/+0
| |
* | Change the comment ID to use both bug and comment ID references.vince2021-02-142-0/+41
| | | | | | | | | | 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-6/+9
|/
* repo: finish RepoStorage moveMichael Muré2020-12-082-8/+8
|
* Vendor: upgrade spf13/cobra to v1.1.1 (#479)65432020-10-273-527/+342
| | | | | | | * build(deps): bump github.com/spf13/cobra from 1.0.0 to 1.1.1 * update doc (man & md) * update bash|fish|zsh completion
* cache,bug,identity: structural changeMichael Muré2020-10-041-3/+3
| | | | | | - bug doesn't commit identities anymore, only make sure they are commit - cache use an IdentityResolver to load bugs with identities from the cache (deps injection) - IdentityCache now are identity.Interface
* use go-git by default!Michael Muré2020-09-291-1/+1
|
* misc: move the random bug command on its own packageMichael Muré2020-09-271-3/+6
|
* doc: generate concurrentlyMichael Muré2020-09-271-2/+1
|
* commands: cleanup the command's usage to avoid warnings when generating the docMichael Muré2020-07-284-11/+48
|
* commands: refactor to avoid globalsMichael Muré2020-06-281-4/+4
|
* Add support for read-only mode for web UI.Luke Granger-Brown2020-06-273-1/+5
| | | | Fixes #402.
* repo: more testsMichael Muré2020-06-271-1/+2
|
* repository: remove tie to Bug, improved and reusable testingMichael Muré2020-06-261-3/+1
| | | | | | | | | - allow the creation of arbitrary Lamport clocks, freeing the way to new entities and removing Bug specific (upper layer) code. - generalize the memory-only and persisted Lamport clocks behind a common interface - rework the tests to provide reusable testing code for a Repo, a Clock, a Config, opening a path to add a new Repo implementation more easily - test previously untested components with those new tests Note: one problem found during this endeavor is that `identity.Version` also need to store one time + Lamport time for each other Entity (Bug, config, PR ...). This could possibly done without breaking change but it would be much easier to wait for https://github.com/MichaelMure/git-bug-migration to happen.
* cmds: cleanup and re-generate filesMichael Muré2020-06-243-9/+21
|
* Merge pull request #403 from MichaelMure/ls-dumpVincent Tiu2020-06-183-1/+8
|\ | | | | [ls] add support for different output formats
| * ls: Add support to ls dump bug information in specific formatsvince2020-06-163-1/+8
| | | | | | | | 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-162-4/+4
|/
* generate docs and completion concurrently for a faster "make"Michael Muré2020-06-145-96/+61
|
* CLI: enable Fish completionMichael Muré2020-06-142-0/+161
|
* update cobraMichael Muré2020-06-141-0/+66
|
* readme: document workflowsMichael Muré2020-04-041-0/+0
|
* add workflow diagramsMichael Muré2020-03-013-0/+1
|
* update webUI's screenshotsMichael Muré2020-02-232-0/+0
|
* update auto-generated filesMichael Muré2020-02-231-4/+11
|
* update auto-generated filesMichael Muré2020-02-232-6/+6
|
* bridges: massive refactorMichael Muré2020-02-153-21/+28
| | | | | | - automatic flag validation and warning - generalized prompt - cleanups
* it compiles \o/Michael Muré2020-02-083-1/+15
|
* webui: add logoludovicm672020-01-241-0/+95
|
* bridge/gitlab: support self-hosted GitLab instanceamine2019-12-103-0/+7
|
* bridge: huge refactor to accept multiple kind of credentialsMichael Muré2019-12-083-11/+9
|
* github: tiny cleanups of the configuratorMichael Muré2019-11-263-0/+7
|
* bug: make sure there is no Operation's hash collisionMichael Muré2019-11-191-12/+19
|
* cli: rename "token" into "auth"Michael Muré2019-11-103-107/+107
|
* cli: add bridge token showMichael Muré2019-11-103-2/+35
|
* bridge: various improvement on the global token PRMichael Muré2019-11-103-26/+7
|
* token: regenerate documentation and fix importsamine2019-11-093-14/+1
|
* tokens: use a hash as token identifier instead of the token it selfamine2019-11-092-10/+6
|
* bridge: various cleanupsMichael Muré2019-11-093-0/+158
|
* bridge: improvement on the import resume featureMichael Muré2019-11-032-3/+3
|
* commands: support bridge imports after a given date and resumable importsamine2019-11-033-1/+14
|
* commands: add bridge configure completion scriptsAmine Hilaly2019-08-313-0/+4
|
* commands: add a "tui" alias for "termui"Michael Muré2019-08-311-0/+4
|
* docs: replace images with new onesAmine Hilaly2019-08-262-0/+0
|