aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* DOC: commands/root.go: syntaxWes Turner2020-05-013-3/+3
|
* Merge pull request #380 from ogirginc/masterMichael Muré2020-04-241-0/+9
|\ | | | | Update README.md
| * Update README.mdOgulcan Girginc2020-04-231-0/+9
|/ | | Display Homebrew option to install git-bug on macOS.
* Merge pull request #378 from vojta001/masterMichael Muré2020-04-161-0/+4
|\ | | | | termui: fix a crash when trying to open a bug when there are none
| * termui: fix a crash when trying to open a bug when there are noneVojtěch Káně2020-04-161-0/+4
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Nothing prevented you from pressing Enter in bug listing even when there were no open bugs. Doing so resulted in: panic: runtime error: index out of range [0] with length 0 goroutine 1 [running]: github.com/MichaelMure/git-bug/termui.(*bugTable).openBug(0xc00007aa80, 0xc000354000, 0xc00036c120, 0x2, 0x2) /build/source/termui/bug_table.go:440 +0x17f github.com/awesome-gocui/gocui.(*Gui).execKeybinding(0xc000354000, 0xc00036c120, 0xc0003102a0, 0xc00007a001, 0xc000225b2c, 0xc000000180) /build/go/pkg/mod/github.com/awesome-gocui/gocui@v0.6.1-0.20191115151952-a34ffb055986/gui.go:808 +0x65 github.com/awesome-gocui/gocui.(*Gui).execKeybindings(0xc000354000, 0xc00036c120, 0xc000225b38, 0x3, 0x4, 0x3) /build/go/pkg/mod/github.com/awesome-gocui/gocui@v0.6.1-0.20191115151952-a34ffb055986/gui.go:787 +0xed github.com/awesome-gocui/gocui.(*Gui).onKey(0xc000354000, 0xc000225b38, 0x2, 0x0) /build/go/pkg/mod/github.com/awesome-gocui/gocui@v0.6.1-0.20191115151952-a34ffb055986/gui.go:745 +0x164 github.com/awesome-gocui/gocui.(*Gui).handleEvent(...) /build/go/pkg/mod/github.com/awesome-gocui/gocui@v0.6.1-0.20191115151952-a34ffb055986/gui.go:506 github.com/awesome-gocui/gocui.(*Gui).MainLoop(0xc000354000, 0x0, 0x0) /build/go/pkg/mod/github.com/awesome-gocui/gocui@v0.6.1-0.20191115151952-a34ffb055986/gui.go:466 +0x202 github.com/MichaelMure/git-bug/termui.initGui(0x0) /build/source/termui/termui.go:113 +0x12c github.com/MichaelMure/git-bug/termui.Run(0xc000228000, 0xc000078b30, 0x0) /build/source/termui/termui.go:66 +0x185 github.com/MichaelMure/git-bug/commands.runTermUI(0x1211bc0, 0x12478e0, 0x0, 0x0, 0x0, 0x0) /build/source/commands/termui.go:18 +0xd5 github.com/spf13/cobra.(*Command).execute(0x1211bc0, 0x12478e0, 0x0, 0x0, 0x1211bc0, 0x12478e0) /build/go/pkg/mod/github.com/spf13/cobra@v0.0.6/command.go:840 +0x453 github.com/spf13/cobra.(*Command).ExecuteC(0x1210960, 0x0, 0x0, 0x0) /build/go/pkg/mod/github.com/spf13/cobra@v0.0.6/command.go:945 +0x317 github.com/spf13/cobra.(*Command).Execute(...) /build/go/pkg/mod/github.com/spf13/cobra@v0.0.6/command.go:885 github.com/MichaelMure/git-bug/commands.Execute() /build/source/commands/root.go:54 +0x2d main.main() /build/source/git-bug.go:14 +0x20
* Merge pull request #371 from mindriot101/config-reads-includesMichael Muré2020-04-121-2/+2
|\ | | | | Supports git config includes
| * Supports git config includesSimon Walker2020-04-111-2/+2
|/ | | | | | | | | | | | | | I like to have "private" settings in a git include file, and store the main .gitconfig under version control. I do not want any authentication keys or tokens (even if encrypted) in version control, so I have by main .gitconfig include another file which is local and not tracked. The current implementation calls `git config --global --get-regexp <keyPrefix>` and for some reason, this command does not follow git include files. The changes suggested in this PR add the `--includes` flag to the command, which then reads any included files.
* Merge pull request #364 from ↵Michael Muré2020-04-102-1/+3
|\ | | | | | | | | MichaelMure/dependabot/go_modules/github.com/spf13/cobra-0.0.7 build(deps): bump github.com/spf13/cobra from 0.0.6 to 0.0.7
| * build(deps): bump github.com/spf13/cobra from 0.0.6 to 0.0.7dependabot-preview[bot]2020-03-302-1/+3
| | | | | | | | | | | | | | Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 0.0.6 to 0.0.7. - [Release notes](https://github.com/spf13/cobra/releases) - [Commits](https://github.com/spf13/cobra/compare/v0.0.6...0.0.7) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* | readme: better phrasingMichael Muré2020-04-041-1/+1
| |
* | readme: fix image linksMichael Muré2020-04-041-3/+3
| |
* | readme: document workflowsMichael Muré2020-04-042-0/+31
| |
* | Merge pull request #363 from MichaelMure/gitlab-iterator0.7.1Michael Muré2020-04-046-290/+425
|\ \ | |/ |/| gitlab: refactor the iterator, fix bug
| * gitlab: fix iterator (paginate with first index 1) and avoid the trailing ↵Michael Muré2020-04-043-12/+38
| | | | | | | | API call
| * gitlab: refactor the iterator, fix bugsMichael Muré2020-03-286-290/+399
|/ | | | Notably, properly reset sub iterators when changing to the next issue
* jira/gitlab: fix a bad login handling in the configuratorMichael Muré2020-03-282-10/+14
|
* drop support of go 1.11 due to bad dep handling without mod supportMichael Muré2020-03-283-7/+1
|
* query: more robust tokenizerMichael Muré2020-03-282-18/+58
|
* launchpad: fix a nil value accessMichael Muré2020-03-281-1/+1
|
* Merge pull request #354 from ↵Michael Muré2020-03-281-15/+15
|\ | | | | | | | | MichaelMure/dependabot/npm_and_yarn/webui/acorn-5.7.4 build(deps): [security] bump acorn from 5.7.3 to 5.7.4 in /webui
| * build(deps): [security] bump acorn from 5.7.3 to 5.7.4 in /webuidependabot-preview[bot]2020-03-131-15/+15
| | | | | | | | | | | | | | Bumps [acorn](https://github.com/acornjs/acorn) from 5.7.3 to 5.7.4. **This update includes a security fix.** - [Release notes](https://github.com/acornjs/acorn/releases) - [Commits](https://github.com/acornjs/acorn/compare/5.7.3...5.7.4) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* | Merge pull request #362 from ↵Michael Muré2020-03-282-1/+10
|\ \ | | | | | | | | | | | | MichaelMure/dependabot/go_modules/github.com/xanzy/go-gitlab-0.29.0 build(deps): bump github.com/xanzy/go-gitlab from 0.27.0 to 0.29.0
| * | build(deps): bump github.com/xanzy/go-gitlab from 0.27.0 to 0.29.0dependabot-preview[bot]2020-03-282-1/+10
| | | | | | | | | | | | | | | | | | | | | | | | Bumps [github.com/xanzy/go-gitlab](https://github.com/xanzy/go-gitlab) from 0.27.0 to 0.29.0. - [Release notes](https://github.com/xanzy/go-gitlab/releases) - [Changelog](https://github.com/xanzy/go-gitlab/blob/master/CHANGELOG.md) - [Commits](https://github.com/xanzy/go-gitlab/compare/v0.27.0...v0.29.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* | | Merge pull request #355 from MichaelMure/query-parser-astMichael Muré2020-03-2815-325/+462
|\ \ \ | |/ / |/| | replace the all-in-one query parser by a complete one with AST/lexer/parser
| * | query: no need for an ast packageMichael Muré2020-03-288-116/+96
| | |
| * | cache: replace the all-in-one query parser by a complete one with ↵Michael Muré2020-03-2815-294/+451
|/ / | | | | | | AST/lexer/parser
* | Merge pull request #358 from MichaelMure/gitlab-testsMichael Muré2020-03-286-8/+30
|\ \ | | | | | | gitlab: fix issues import url
| * | launchpad: tighten the bug matchingMichael Muré2020-03-281-1/+4
| | |
| * | github: tighten the import matchingMichael Muré2020-03-281-1/+4
| | |
| * | jira: tag bugs with the base URL, tighten the matchingMichael Muré2020-03-282-1/+12
| | |
| * | gitlab: match bugs on IDs + baseURL because the URL is not stableMichael Muré2020-03-281-1/+6
| | |
| * | gitlab: fix bugs import urlamine2020-03-151-4/+4
| |/
* | Merge pull request #361 from ↵Michael Muré2020-03-232-1/+3
|\ \ | | | | | | | | | | | | MichaelMure/dependabot/go_modules/github.com/mattn/go-runewidth-0.0.9 build(deps): bump github.com/mattn/go-runewidth from 0.0.8 to 0.0.9
| * | build(deps): bump github.com/mattn/go-runewidth from 0.0.8 to 0.0.9dependabot-preview[bot]2020-03-232-1/+3
|/ / | | | | | | | | | | | | Bumps [github.com/mattn/go-runewidth](https://github.com/mattn/go-runewidth) from 0.0.8 to 0.0.9. - [Release notes](https://github.com/mattn/go-runewidth/releases) - [Commits](https://github.com/mattn/go-runewidth/compare/v0.0.8...v0.0.9) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* | Merge pull request #359 from ↵Michael Muré2020-03-162-1/+3
|\ \ | |/ |/| | | | | MichaelMure/dependabot/go_modules/github.com/MichaelMure/go-term-text-0.2.8 build(deps): bump github.com/MichaelMure/go-term-text from 0.2.7 to 0.2.8
| * build(deps): bump github.com/MichaelMure/go-term-textdependabot-preview[bot]2020-03-162-1/+3
|/ | | | | | | Bumps [github.com/MichaelMure/go-term-text](https://github.com/MichaelMure/go-term-text) from 0.2.7 to 0.2.8. - [Release notes](https://github.com/MichaelMure/go-term-text/releases) - [Commits](https://github.com/MichaelMure/go-term-text/compare/v0.2.7...v0.2.8) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* makefile: add target to clean remote identitiesMichael Muré2020-03-051-0/+3
|
* cache: fix missing login in LegacyAuthorExcerpt causing panicMichael Muré2020-03-051-1/+2
|
* Merge pull request #348 from ↵Michael Muré2020-03-032-1/+4
|\ | | | | | | | | MichaelMure/dependabot/go_modules/github.com/xanzy/go-gitlab-0.27.0 build(deps): bump github.com/xanzy/go-gitlab from 0.26.0 to 0.27.0
| * build(deps): bump github.com/xanzy/go-gitlab from 0.26.0 to 0.27.0dependabot-preview[bot]2020-03-022-1/+4
|/ | | | | | | | Bumps [github.com/xanzy/go-gitlab](https://github.com/xanzy/go-gitlab) from 0.26.0 to 0.27.0. - [Release notes](https://github.com/xanzy/go-gitlab/releases) - [Changelog](https://github.com/xanzy/go-gitlab/blob/master/CHANGELOG.md) - [Commits](https://github.com/xanzy/go-gitlab/compare/v0.26.0...v0.27.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* github-howto: change titleMichael Muré2020-03-011-1/+1
|
* travis: build with go-1.14, release with go-1.13Michael Muré2020-03-011-1/+3
|
* Merge pull request #281 from MichaelMure/howto-github0.7.0Michael Muré2020-03-015-1/+82
|\ | | | | add a how-to to explain usage with Github
| * howto: link to other ressourcesMichael Muré2020-03-011-0/+11
| |
| * add workflow diagramsMichael Muré2020-03-013-0/+1
| |
| * doc: refresh the github howtoMichael Muré2020-03-012-3/+11
| |
| * doc: fix typosMichael Muré2020-03-011-2/+2
| |
| * add a how-to to explain usage with GithubMichael Muré2020-03-011-0/+61
| |
* | git: fix GetRemote to not break when there is no remotesMichael Muré2020-03-011-1/+4
|/
* update readmeMichael Muré2020-02-291-39/+35
|