aboutsummaryrefslogtreecommitdiffstats
path: root/commands
Commit message (Collapse)AuthorAgeFilesLines
* commands: fix ls not displaying the new Identities properlyMichael Muré2019-04-111-1/+13
|
* integrate actors and participant filters into ls and show commandsAmine Hilaly2019-04-052-14/+57
|
* commands: add a --field flag to "git bug user" to display users details ↵Michael Muré2019-04-031-0/+36
| | | | individually
* commands: add "show --field humanId"Michael Muré2019-04-031-1/+3
|
* commands: fix labels no showing properly in "git bug show <id> -f labels"Michael Muré2019-04-031-2/+5
| | | | fix #119
* commands: display comment's id in "git bug comment"Michael Muré2019-03-281-0/+1
|
* commands: fix a bad output in "bug comment"Michael Muré2019-03-281-1/+1
|
* commands: only return the error (not the function help) when no identity is setMichael Muré2019-03-271-1/+3
| | | | ... to avoid misleading a user into thinking the usage was incorrect
* cache: properly push/pull identities and bugsMichael Muré2019-03-271-5/+6
|
* Renamed user id to user-id and metioned bug for some commandsJocelyn FACCHINI2019-03-237-12/+10
|
* Select and Label command documentationJocelyn FACCHINI2019-03-235-4/+15
| | | | | | - Informed that label command adds/removes a label to a given bug. - Added suggestion to use select command when omitting to provide a bug id as argument. - Added a bit more detail for the select command documentation, giving a hint to "deselect" command.
* Added Register.CleanerSladyn2019-03-061-0/+2
|
* Combined variable declaration and assignmentSladyn2019-03-051-2/+1
|
* ls-id.go: Fixing ls-idSladyn2019-03-051-2/+10
| | | | | Adding check for length of args Pulling bugIds from correct backend.
* Rebased and updated.Sladyn2019-03-021-5/+1
|
* Made requested changesSladyn2019-03-021-1/+5
| | | | Made changes to the doc files and remaining areas which required updation.
* ls.go:`git bug ls` should be fasterSladyn2019-03-021-16/+15
| | | | | | | | Added `Title` to BugExcerpt Added `TitleFilter` to `filter.go` Used BugExcerpt in `ls` command to improve performance. Closes https://github.com/MichaelMure/git-bug/issues/98
* commands: "user ls" also show metadataMichael Muré2019-03-012-0/+4
|
* cache: better API to access excerptsMichael Muré2019-03-011-1/+6
|
* commands: show the last modification time in "user"Michael Muré2019-03-011-0/+3
|
* identity: another round of cleanupsMichael Muré2019-03-011-7/+0
|
* commands: add a "." at the end of Short commands usageMichael Muré2019-03-0130-30/+30
|
* commands: add a "user adopt" command to use an existing identityMichael Muré2019-03-012-0/+52
|
* commands: add a super-fast "user ls" commandMichael Muré2019-03-011-0/+47
|
* github: fix 3 edge-case failuresMichael Muré2019-03-016-6/+6
|
* identity: some UX cleanupMichael Muré2019-03-013-2/+26
|
* identity: store the times properlyMichael Muré2019-03-011-2/+0
|
* identity: working identity cacheMichael Muré2019-03-011-1/+1
|
* identity: fix testsMichael Muré2019-03-011-2/+2
|
* identity: work on higher level now, cache, first two identity commandsMichael Muré2019-03-013-49/+132
|
* identity: all tests green o/Michael Muré2019-03-012-5/+11
|
* identity: I can compile again !!Michael Muré2019-03-011-82/+43
|
* identity: wip push/pullMichael Muré2019-03-011-1/+1
|
* identity: more cleaning and fixes after a code reviewMichael Muré2019-03-011-1/+1
|
* identity: more progress and fixesMichael Muré2019-03-012-3/+3
|
* identity: more progress and fixesMichael Muré2019-03-011-2/+16
|
* WIP identity in gitMichael Muré2019-03-011-0/+35
|
* Merge pull request #97 from sladyn98/ls_id_branchMichael Muré2019-02-251-0/+35
|\ | | | | A command to list matching bug id from a prefix
| * ls-id.go:Add ls-id [<prefix>] commandSladyn2019-02-251-52/+7
| | | | | | | | | | | | | | | | This file adds the ls-id command which returns the bug id matching the prefix the user enters. If no prefix entered it lists all the BugId's Closes #47
| * ls-id.go: Add ls-id [<prefix>] commandSladyn2019-02-141-0/+80
| | | | | | | | | | | | | | | | This file adds the ls-id command which returns the bug id matching the prefix the user enters. If no prefix entered it lists all the BugId's Closes https://github.com/MichaelMure/git-bug/issues/47
* | add a "version" command with various outputs, including the git hash and tagMichael Muré2019-02-202-2/+71
|/
* commands: show: change for a single valued --field flagMichael Muré2019-01-071-60/+66
|
* Simplified show commadn error handling.Sebastien Devaux2019-01-071-7/+1
| | | | Exit on first unknown field found in query.
* Fixed golangci check error about new error from format stringSebastien Devaux2019-01-041-1/+1
|
* Adding fields switch to show command to select fields to display.Sebastien Devaux2019-01-041-37/+69
|
* Allow empty messages in comments.Cyril Roelandt2018-12-261-1/+8
| | | | | Some bug trackers, like Launchpad, allow messages to be empty (when adding a file to the bug, for instance).
* tests: configure user ident in repos used by testsRafael Ascensão2018-12-101-0/+7
| | | | | | | | | | | | | | | Some git operations require the user to have an identity configured and will exit with failure if none is set (or if git can't guess it). As a direct consequence of this, the test suite may fail depending on the user local configuration. The error itself is justified as regular users *should* configure their identity themselves. However, when building in chrooted environments it's unlikely the git identity will be set making the test suite fail unnecessarily. To prevent such unnecessary failures, let's make a dummy identity for repos created and used by the test suite.
* moved cleaner function to util/interruptRafael Passos2018-10-2423-46/+46
|
* Registering lock clearing functions to CleanerRafael Passos2018-10-2323-0/+46
|
* version 0.4.00.4.0Michael Muré2018-10-211-1/+1
|