aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bug
diff options
context:
space:
mode:
Diffstat (limited to 'commands/bug')
-rw-r--r--commands/bug/bug.go18
-rw-r--r--commands/bug/bug_comment.go4
-rw-r--r--commands/bug/bug_comment_add.go6
-rw-r--r--commands/bug/bug_comment_add_test.go2
-rw-r--r--commands/bug/bug_comment_edit.go4
-rw-r--r--commands/bug/bug_comment_edit_test.go2
-rw-r--r--commands/bug/bug_comment_test.go6
-rw-r--r--commands/bug/bug_deselect.go6
-rw-r--r--commands/bug/bug_label.go2
-rw-r--r--commands/bug/bug_label_new.go4
-rw-r--r--commands/bug/bug_label_rm.go4
-rw-r--r--commands/bug/bug_new.go6
-rw-r--r--commands/bug/bug_new_test.go2
-rw-r--r--commands/bug/bug_rm.go2
-rw-r--r--commands/bug/bug_rm_test.go2
-rw-r--r--commands/bug/bug_select.go8
-rw-r--r--commands/bug/bug_show.go10
-rw-r--r--commands/bug/bug_status.go2
-rw-r--r--commands/bug/bug_status_close.go2
-rw-r--r--commands/bug/bug_status_open.go2
-rw-r--r--commands/bug/bug_test.go4
-rw-r--r--commands/bug/bug_title.go2
-rw-r--r--commands/bug/bug_title_edit.go6
-rw-r--r--commands/bug/completion.go10
-rw-r--r--commands/bug/input/input.go4
-rw-r--r--commands/bug/testenv/testenv.go6
26 files changed, 63 insertions, 63 deletions
diff --git a/commands/bug/bug.go b/commands/bug/bug.go
index 55a1fa59..4cf18ab9 100644
--- a/commands/bug/bug.go
+++ b/commands/bug/bug.go
@@ -9,15 +9,15 @@ import (
text "github.com/MichaelMure/go-term-text"
"github.com/spf13/cobra"
- "github.com/MichaelMure/git-bug/cache"
- "github.com/MichaelMure/git-bug/commands/cmdjson"
- "github.com/MichaelMure/git-bug/commands/completion"
- "github.com/MichaelMure/git-bug/commands/execenv"
- "github.com/MichaelMure/git-bug/entities/bug"
- "github.com/MichaelMure/git-bug/entities/common"
- "github.com/MichaelMure/git-bug/entity"
- "github.com/MichaelMure/git-bug/query"
- "github.com/MichaelMure/git-bug/util/colors"
+ "github.com/git-bug/git-bug/cache"
+ "github.com/git-bug/git-bug/commands/cmdjson"
+ "github.com/git-bug/git-bug/commands/completion"
+ "github.com/git-bug/git-bug/commands/execenv"
+ "github.com/git-bug/git-bug/entities/bug"
+ "github.com/git-bug/git-bug/entities/common"
+ "github.com/git-bug/git-bug/entity"
+ "github.com/git-bug/git-bug/query"
+ "github.com/git-bug/git-bug/util/colors"
)
type bugOptions struct {
diff --git a/commands/bug/bug_comment.go b/commands/bug/bug_comment.go
index b037f688..68ae0af6 100644
--- a/commands/bug/bug_comment.go
+++ b/commands/bug/bug_comment.go
@@ -4,8 +4,8 @@ import (
text "github.com/MichaelMure/go-term-text"
"github.com/spf13/cobra"
- "github.com/MichaelMure/git-bug/commands/execenv"
- "github.com/MichaelMure/git-bug/util/colors"
+ "github.com/git-bug/git-bug/commands/execenv"
+ "github.com/git-bug/git-bug/util/colors"
)
func newBugCommentCommand(env *execenv.Env) *cobra.Command {
diff --git a/commands/bug/bug_comment_add.go b/commands/bug/bug_comment_add.go
index 132de233..dbf1e790 100644
--- a/commands/bug/bug_comment_add.go
+++ b/commands/bug/bug_comment_add.go
@@ -3,9 +3,9 @@ package bugcmd
import (
"github.com/spf13/cobra"
- buginput "github.com/MichaelMure/git-bug/commands/bug/input"
- "github.com/MichaelMure/git-bug/commands/execenv"
- "github.com/MichaelMure/git-bug/util/text"
+ buginput "github.com/git-bug/git-bug/commands/bug/input"
+ "github.com/git-bug/git-bug/commands/execenv"
+ "github.com/git-bug/git-bug/util/text"
)
type bugCommentNewOptions struct {
diff --git a/commands/bug/bug_comment_add_test.go b/commands/bug/bug_comment_add_test.go
index 55e285f4..b6a5ba61 100644
--- a/commands/bug/bug_comment_add_test.go
+++ b/commands/bug/bug_comment_add_test.go
@@ -5,7 +5,7 @@ import (
"github.com/stretchr/testify/require"
- "github.com/MichaelMure/git-bug/commands/bug/testenv"
+ "github.com/git-bug/git-bug/commands/bug/testenv"
)
func TestBugCommentNew(t *testing.T) {
diff --git a/commands/bug/bug_comment_edit.go b/commands/bug/bug_comment_edit.go
index e6f8d667..f1e10e02 100644
--- a/commands/bug/bug_comment_edit.go
+++ b/commands/bug/bug_comment_edit.go
@@ -3,8 +3,8 @@ package bugcmd
import (
"github.com/spf13/cobra"
- buginput "github.com/MichaelMure/git-bug/commands/bug/input"
- "github.com/MichaelMure/git-bug/commands/execenv"
+ buginput "github.com/git-bug/git-bug/commands/bug/input"
+ "github.com/git-bug/git-bug/commands/execenv"
)
type bugCommentEditOptions struct {
diff --git a/commands/bug/bug_comment_edit_test.go b/commands/bug/bug_comment_edit_test.go
index 9e110a3b..21407ac6 100644
--- a/commands/bug/bug_comment_edit_test.go
+++ b/commands/bug/bug_comment_edit_test.go
@@ -5,7 +5,7 @@ import (
"github.com/stretchr/testify/require"
- "github.com/MichaelMure/git-bug/commands/bug/testenv"
+ "github.com/git-bug/git-bug/commands/bug/testenv"
)
func TestBugCommentEdit(t *testing.T) {
diff --git a/commands/bug/bug_comment_test.go b/commands/bug/bug_comment_test.go
index add48b21..e54cdab1 100644
--- a/commands/bug/bug_comment_test.go
+++ b/commands/bug/bug_comment_test.go
@@ -9,9 +9,9 @@ import (
"github.com/stretchr/testify/require"
- "github.com/MichaelMure/git-bug/commands/bug/testenv"
- "github.com/MichaelMure/git-bug/commands/cmdtest"
- "github.com/MichaelMure/git-bug/commands/execenv"
+ "github.com/git-bug/git-bug/commands/bug/testenv"
+ "github.com/git-bug/git-bug/commands/cmdtest"
+ "github.com/git-bug/git-bug/commands/execenv"
)
func TestBugComment(t *testing.T) {
diff --git a/commands/bug/bug_deselect.go b/commands/bug/bug_deselect.go
index 5e9acc60..5a318274 100644
--- a/commands/bug/bug_deselect.go
+++ b/commands/bug/bug_deselect.go
@@ -3,9 +3,9 @@ package bugcmd
import (
"github.com/spf13/cobra"
- "github.com/MichaelMure/git-bug/commands/execenv"
- _select "github.com/MichaelMure/git-bug/commands/select"
- "github.com/MichaelMure/git-bug/entities/bug"
+ "github.com/git-bug/git-bug/commands/execenv"
+ _select "github.com/git-bug/git-bug/commands/select"
+ "github.com/git-bug/git-bug/entities/bug"
)
func newBugDeselectCommand(env *execenv.Env) *cobra.Command {
diff --git a/commands/bug/bug_label.go b/commands/bug/bug_label.go
index ec076922..dfb1f879 100644
--- a/commands/bug/bug_label.go
+++ b/commands/bug/bug_label.go
@@ -3,7 +3,7 @@ package bugcmd
import (
"github.com/spf13/cobra"
- "github.com/MichaelMure/git-bug/commands/execenv"
+ "github.com/git-bug/git-bug/commands/execenv"
)
func newBugLabelCommand(env *execenv.Env) *cobra.Command {
diff --git a/commands/bug/bug_label_new.go b/commands/bug/bug_label_new.go
index 9fff851c..20586ba8 100644
--- a/commands/bug/bug_label_new.go
+++ b/commands/bug/bug_label_new.go
@@ -3,8 +3,8 @@ package bugcmd
import (
"github.com/spf13/cobra"
- "github.com/MichaelMure/git-bug/commands/execenv"
- "github.com/MichaelMure/git-bug/util/text"
+ "github.com/git-bug/git-bug/commands/execenv"
+ "github.com/git-bug/git-bug/util/text"
)
func newBugLabelNewCommand(env *execenv.Env) *cobra.Command {
diff --git a/commands/bug/bug_label_rm.go b/commands/bug/bug_label_rm.go
index d389830f..91b24ccf 100644
--- a/commands/bug/bug_label_rm.go
+++ b/commands/bug/bug_label_rm.go
@@ -3,8 +3,8 @@ package bugcmd
import (
"github.com/spf13/cobra"
- "github.com/MichaelMure/git-bug/commands/execenv"
- "github.com/MichaelMure/git-bug/util/text"
+ "github.com/git-bug/git-bug/commands/execenv"
+ "github.com/git-bug/git-bug/util/text"
)
func newBugLabelRmCommand(env *execenv.Env) *cobra.Command {
diff --git a/commands/bug/bug_new.go b/commands/bug/bug_new.go
index e66967f9..2c5f5e19 100644
--- a/commands/bug/bug_new.go
+++ b/commands/bug/bug_new.go
@@ -3,9 +3,9 @@ package bugcmd
import (
"github.com/spf13/cobra"
- buginput "github.com/MichaelMure/git-bug/commands/bug/input"
- "github.com/MichaelMure/git-bug/commands/execenv"
- "github.com/MichaelMure/git-bug/util/text"
+ buginput "github.com/git-bug/git-bug/commands/bug/input"
+ "github.com/git-bug/git-bug/commands/execenv"
+ "github.com/git-bug/git-bug/util/text"
)
type bugNewOptions struct {
diff --git a/commands/bug/bug_new_test.go b/commands/bug/bug_new_test.go
index 210a4b0b..3a4a535f 100644
--- a/commands/bug/bug_new_test.go
+++ b/commands/bug/bug_new_test.go
@@ -5,7 +5,7 @@ import (
"github.com/stretchr/testify/require"
- "github.com/MichaelMure/git-bug/commands/bug/testenv"
+ "github.com/git-bug/git-bug/commands/bug/testenv"
)
func TestBugNew(t *testing.T) {
diff --git a/commands/bug/bug_rm.go b/commands/bug/bug_rm.go
index b9d3d525..5f3cc803 100644
--- a/commands/bug/bug_rm.go
+++ b/commands/bug/bug_rm.go
@@ -5,7 +5,7 @@ import (
"github.com/spf13/cobra"
- "github.com/MichaelMure/git-bug/commands/execenv"
+ "github.com/git-bug/git-bug/commands/execenv"
)
func newBugRmCommand(env *execenv.Env) *cobra.Command {
diff --git a/commands/bug/bug_rm_test.go b/commands/bug/bug_rm_test.go
index e0c2bbc5..2cc4d034 100644
--- a/commands/bug/bug_rm_test.go
+++ b/commands/bug/bug_rm_test.go
@@ -5,7 +5,7 @@ import (
"github.com/stretchr/testify/require"
- "github.com/MichaelMure/git-bug/commands/bug/testenv"
+ "github.com/git-bug/git-bug/commands/bug/testenv"
)
func TestBugRm(t *testing.T) {
diff --git a/commands/bug/bug_select.go b/commands/bug/bug_select.go
index c93cd7b1..ed0f3354 100644
--- a/commands/bug/bug_select.go
+++ b/commands/bug/bug_select.go
@@ -5,10 +5,10 @@ import (
"github.com/spf13/cobra"
- "github.com/MichaelMure/git-bug/cache"
- "github.com/MichaelMure/git-bug/commands/execenv"
- _select "github.com/MichaelMure/git-bug/commands/select"
- "github.com/MichaelMure/git-bug/entities/bug"
+ "github.com/git-bug/git-bug/cache"
+ "github.com/git-bug/git-bug/commands/execenv"
+ _select "github.com/git-bug/git-bug/commands/select"
+ "github.com/git-bug/git-bug/entities/bug"
)
func ResolveSelected(repo *cache.RepoCache, args []string) (*cache.BugCache, []string, error) {
diff --git a/commands/bug/bug_show.go b/commands/bug/bug_show.go
index ef20df2a..cc00b5ef 100644
--- a/commands/bug/bug_show.go
+++ b/commands/bug/bug_show.go
@@ -7,11 +7,11 @@ import (
"github.com/spf13/cobra"
- "github.com/MichaelMure/git-bug/commands/cmdjson"
- "github.com/MichaelMure/git-bug/commands/completion"
- "github.com/MichaelMure/git-bug/commands/execenv"
- "github.com/MichaelMure/git-bug/entities/bug"
- "github.com/MichaelMure/git-bug/util/colors"
+ "github.com/git-bug/git-bug/commands/cmdjson"
+ "github.com/git-bug/git-bug/commands/completion"
+ "github.com/git-bug/git-bug/commands/execenv"
+ "github.com/git-bug/git-bug/entities/bug"
+ "github.com/git-bug/git-bug/util/colors"
)
type bugShowOptions struct {
diff --git a/commands/bug/bug_status.go b/commands/bug/bug_status.go
index c8542240..5323b276 100644
--- a/commands/bug/bug_status.go
+++ b/commands/bug/bug_status.go
@@ -3,7 +3,7 @@ package bugcmd
import (
"github.com/spf13/cobra"
- "github.com/MichaelMure/git-bug/commands/execenv"
+ "github.com/git-bug/git-bug/commands/execenv"
)
func newBugStatusCommand(env *execenv.Env) *cobra.Command {
diff --git a/commands/bug/bug_status_close.go b/commands/bug/bug_status_close.go
index 7a8ae4de..c9a935bf 100644
--- a/commands/bug/bug_status_close.go
+++ b/commands/bug/bug_status_close.go
@@ -3,7 +3,7 @@ package bugcmd
import (
"github.com/spf13/cobra"
- "github.com/MichaelMure/git-bug/commands/execenv"
+ "github.com/git-bug/git-bug/commands/execenv"
)
func newBugStatusCloseCommand(env *execenv.Env) *cobra.Command {
diff --git a/commands/bug/bug_status_open.go b/commands/bug/bug_status_open.go
index 0c0c02f0..d09584cd 100644
--- a/commands/bug/bug_status_open.go
+++ b/commands/bug/bug_status_open.go
@@ -3,7 +3,7 @@ package bugcmd
import (
"github.com/spf13/cobra"
- "github.com/MichaelMure/git-bug/commands/execenv"
+ "github.com/git-bug/git-bug/commands/execenv"
)
func newBugStatusOpenCommand(env *execenv.Env) *cobra.Command {
diff --git a/commands/bug/bug_test.go b/commands/bug/bug_test.go
index c13e8db7..377936f7 100644
--- a/commands/bug/bug_test.go
+++ b/commands/bug/bug_test.go
@@ -5,8 +5,8 @@ import (
"github.com/stretchr/testify/require"
- "github.com/MichaelMure/git-bug/commands/bug/testenv"
- . "github.com/MichaelMure/git-bug/commands/cmdtest"
+ "github.com/git-bug/git-bug/commands/bug/testenv"
+ . "github.com/git-bug/git-bug/commands/cmdtest"
)
func Test_repairQuery(t *testing.T) {
diff --git a/commands/bug/bug_title.go b/commands/bug/bug_title.go
index af959fb7..6c81161d 100644
--- a/commands/bug/bug_title.go
+++ b/commands/bug/bug_title.go
@@ -3,7 +3,7 @@ package bugcmd
import (
"github.com/spf13/cobra"
- "github.com/MichaelMure/git-bug/commands/execenv"
+ "github.com/git-bug/git-bug/commands/execenv"
)
func newBugTitleCommand(env *execenv.Env) *cobra.Command {
diff --git a/commands/bug/bug_title_edit.go b/commands/bug/bug_title_edit.go
index 2d6bafca..1d18a4f9 100644
--- a/commands/bug/bug_title_edit.go
+++ b/commands/bug/bug_title_edit.go
@@ -3,9 +3,9 @@ package bugcmd
import (
"github.com/spf13/cobra"
- buginput "github.com/MichaelMure/git-bug/commands/bug/input"
- "github.com/MichaelMure/git-bug/commands/execenv"
- "github.com/MichaelMure/git-bug/util/text"
+ buginput "github.com/git-bug/git-bug/commands/bug/input"
+ "github.com/git-bug/git-bug/commands/execenv"
+ "github.com/git-bug/git-bug/util/text"
)
type bugTitleEditOptions struct {
diff --git a/commands/bug/completion.go b/commands/bug/completion.go
index 62bf658a..d313ef37 100644
--- a/commands/bug/completion.go
+++ b/commands/bug/completion.go
@@ -5,11 +5,11 @@ import (
"github.com/spf13/cobra"
- "github.com/MichaelMure/git-bug/cache"
- "github.com/MichaelMure/git-bug/commands/completion"
- "github.com/MichaelMure/git-bug/commands/execenv"
- _select "github.com/MichaelMure/git-bug/commands/select"
- "github.com/MichaelMure/git-bug/entities/bug"
+ "github.com/git-bug/git-bug/cache"
+ "github.com/git-bug/git-bug/commands/completion"
+ "github.com/git-bug/git-bug/commands/execenv"
+ _select "github.com/git-bug/git-bug/commands/select"
+ "github.com/git-bug/git-bug/entities/bug"
)
// BugCompletion complete a bug id
diff --git a/commands/bug/input/input.go b/commands/bug/input/input.go
index 23c20acb..93b7391e 100644
--- a/commands/bug/input/input.go
+++ b/commands/bug/input/input.go
@@ -7,8 +7,8 @@ import (
"github.com/pkg/errors"
- "github.com/MichaelMure/git-bug/commands/input"
- "github.com/MichaelMure/git-bug/repository"
+ "github.com/git-bug/git-bug/commands/input"
+ "github.com/git-bug/git-bug/repository"
)
const messageFilename = "BUG_MESSAGE_EDITMSG"
diff --git a/commands/bug/testenv/testenv.go b/commands/bug/testenv/testenv.go
index ffa428d4..6ffd1c62 100644
--- a/commands/bug/testenv/testenv.go
+++ b/commands/bug/testenv/testenv.go
@@ -6,8 +6,8 @@ import (
"github.com/fatih/color"
"github.com/stretchr/testify/require"
- "github.com/MichaelMure/git-bug/commands/execenv"
- "github.com/MichaelMure/git-bug/entity"
+ "github.com/git-bug/git-bug/commands/execenv"
+ "github.com/git-bug/git-bug/entity"
)
const (
@@ -28,7 +28,7 @@ func NewTestEnvAndUser(t *testing.T) (*execenv.Env, entity.Id) {
// git-bug command output is consistent in all test scenarios.
//
// See:
- // - https://github.com/MichaelMure/git-bug/issues/926
+ // - https://github.com/git-bug/git-bug/issues/926
// - https://github.com/golang/go/issues/57671
// - https://github.com/golang/go/blob/f721fa3be9bb52524f97b409606f9423437535e8/src/cmd/go/internal/test/test.go#L1180-L1208
// - https://github.com/golang/go/issues/34877