summaryrefslogtreecommitdiffstatshomepage
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 55a1fa59e..4cf18ab93 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 b037f688b..68ae0af63 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 132de2339..dbf1e7908 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 55e285f44..b6a5ba61c 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 e6f8d667c..f1e10e026 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 9e110a3b3..21407ac6e 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 add48b218..e54cdab1c 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 5e9acc60a..5a318274e 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 ec076922d..dfb1f8792 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 9fff851c3..20586ba88 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 d389830f3..91b24ccfb 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 e66967f9f..2c5f5e198 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 210a4b0b4..3a4a535fe 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 b9d3d5253..5f3cc803b 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 e0c2bbc57..2cc4d034b 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 c93cd7b1a..ed0f33548 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 ef20df2a3..cc00b5efe 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 c8542240b..5323b2762 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 7a8ae4de5..c9a935bfd 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 0c0c02f08..d09584cd2 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 c13e8db75..377936f7d 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 af959fb73..6c81161db 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 2d6bafca1..1d18a4f9b 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 62bf658a7..d313ef37c 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 23c20acbc..93b7391e9 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 ffa428d43..6ffd1c62f 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