aboutsummaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Fix typoFelix Kröner2023-10-151-1/+1
|
* Merge pull request #1008 from yarikoptic/enh-codespellSteve Moyer2023-02-161-1/+1
|\ | | | | Fix typos, provide configuration and github workflow for codespell
| * [DATALAD RUNCMD] Run codespell -wYaroslav Halchenko2023-01-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | === Do not change lines below === { "chain": [], "cmd": "codespell -w", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^
* | add more ideas in the feature matrixMichael Muré2023-01-241-6/+19
| |
* | doc: add a feature matrixMichael Muré2023-01-232-2/+126
|/
* commands: different pattern to detect changed flagsMichael Muré2023-01-182-2/+2
|
* commands: remove compact style for "bug", as the width adaptive default ↵Michael Muré2023-01-174-10/+4
| | | | renderer cover that usage
* add wipe sub-command that remove local bugs and identitiesKalin Staykov2023-01-114-1/+47
|
* doc/README: normalize verb tense and fix typoWaldir Pimenta2022-12-141-6/+6
|
* commands: reorg into different packagesMichael Muré2022-11-2086-479/+492
|
* doc: fix incorrect indentationMichael Muré2022-10-222-2/+2
| | | | fix #905
* feat(530) make label commands consistentSteve Moyer2022-09-256-11/+11
|
* refactor(git-bug-863): merge ls-id into lsSteve Moyer2022-09-256-49/+3
| | | | | | | | 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-232-0/+5
|
* move bug.Status in entities/common for reuseMichael Muré2022-08-201-2/+2
|
* docs(847): add compact to docs and bash for ls command's format flagSteve Moyer2022-08-162-2/+2
|
* doc: more tiny fixesMichael Muré2022-06-251-2/+2
|
* doc: more tiny fixesMichael Muré2022-06-251-12/+14
|
* doc: tiny tweaksMichael Muré2022-06-251-2/+10
|
* doc: more discoverable docsMichael Muré2022-05-312-0/+17
|
* model: Multiple, minor readability and language improvementsRobin Vobruba2022-05-041-11/+11
|
* model: Removes now outdated statement about ops and rootRobin Vobruba2022-05-041-1/+0
|
* model: Highlight some words with special meaningRobin Vobruba2022-05-041-4/+4
|
* model: Links to a section further downRobin Vobruba2022-05-041-1/+1
|
* model: Moves example description after the exampleRobin Vobruba2022-05-041-3/+5
|
* model: Adds link explaining nounce (wikipedia)Robin Vobruba2022-05-041-1/+1
|
* model: strict Markdown requires empty lines before (and after) listsRobin Vobruba2022-05-041-1/+6
|
* doc: add missing fileMichael Muré2022-03-221-0/+0
|
* update docMichael Muré2022-03-224-72/+88
|
* Fix a bunch of comments and documentationsMichael Muré2022-03-101-10/+10
|
* update gqlgenMichael Muré2022-02-1539-292/+292
|
* CLI: Add non-interactive option to interactive commands (#651)Sascha2021-05-0912-16/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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-252-1/+16
| | | | | | | | | | | * 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-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
|