diff --git a/.golangci.yml b/.golangci.yml index 3f8ff6f..b2219d9 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -48,7 +48,7 @@ linters: Main: allow: - $gostd - - github.com/aanogueira/git-context/ + - github.com/techquestsdev/git-context/ - github.com/manifoldco/promptui - github.com/cockroachdb/errors - github.com/fatih/color diff --git a/cmd/add.go b/cmd/add.go index 05a4e22..9a31c68 100644 --- a/cmd/add.go +++ b/cmd/add.go @@ -3,11 +3,11 @@ package cmd import ( "fmt" - "github.com/aanogueira/git-context/internal/config" - "github.com/aanogueira/git-context/internal/git" - "github.com/aanogueira/git-context/internal/ui" "github.com/cockroachdb/errors" "github.com/spf13/cobra" + "github.com/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/git" + "github.com/techquestsdev/git-context/internal/ui" ) var addCmd = &cobra.Command{ diff --git a/cmd/cmd_test.go b/cmd/cmd_test.go index 82af633..d1363e6 100644 --- a/cmd/cmd_test.go +++ b/cmd/cmd_test.go @@ -9,10 +9,10 @@ import ( "sync" "testing" - "github.com/aanogueira/git-context/internal/config" - "github.com/aanogueira/git-context/internal/git" "github.com/cockroachdb/errors" "github.com/fatih/color" + "github.com/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/git" ) func TestRunInit(t *testing.T) { diff --git a/cmd/current.go b/cmd/current.go index f48694e..0637991 100644 --- a/cmd/current.go +++ b/cmd/current.go @@ -7,10 +7,10 @@ import ( "path/filepath" "strings" - "github.com/aanogueira/git-context/internal/config" - "github.com/aanogueira/git-context/internal/ui" "github.com/cockroachdb/errors" "github.com/spf13/cobra" + "github.com/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/ui" ) var currentCmd = &cobra.Command{ diff --git a/cmd/dir.go b/cmd/dir.go index 260becc..6815fba 100644 --- a/cmd/dir.go +++ b/cmd/dir.go @@ -5,11 +5,11 @@ import ( "os" "sort" - "github.com/aanogueira/git-context/internal/config" - "github.com/aanogueira/git-context/internal/git" - "github.com/aanogueira/git-context/internal/ui" "github.com/cockroachdb/errors" "github.com/spf13/cobra" + "github.com/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/git" + "github.com/techquestsdev/git-context/internal/ui" ) var dirCmd = &cobra.Command{ diff --git a/cmd/dir_test.go b/cmd/dir_test.go index 3639c1c..3a352de 100644 --- a/cmd/dir_test.go +++ b/cmd/dir_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - "github.com/aanogueira/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/config" ) // skipOnWindows bails out of CLI tests that hard-code POSIX-shaped paths diff --git a/cmd/integration_test.go b/cmd/integration_test.go index a78dc0f..239081b 100644 --- a/cmd/integration_test.go +++ b/cmd/integration_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - "github.com/aanogueira/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/config" ) // TestEndToEndDirectoryAssignment exercises the full lifecycle: switch to a diff --git a/cmd/list.go b/cmd/list.go index f4bba23..4b5587c 100644 --- a/cmd/list.go +++ b/cmd/list.go @@ -5,10 +5,10 @@ import ( "sort" "strconv" - "github.com/aanogueira/git-context/internal/config" - "github.com/aanogueira/git-context/internal/ui" "github.com/cockroachdb/errors" "github.com/spf13/cobra" + "github.com/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/ui" ) var listCmd = &cobra.Command{ diff --git a/cmd/remove.go b/cmd/remove.go index b07243c..ec9b397 100644 --- a/cmd/remove.go +++ b/cmd/remove.go @@ -3,11 +3,11 @@ package cmd import ( "fmt" - "github.com/aanogueira/git-context/internal/config" - "github.com/aanogueira/git-context/internal/git" - "github.com/aanogueira/git-context/internal/ui" "github.com/cockroachdb/errors" "github.com/spf13/cobra" + "github.com/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/git" + "github.com/techquestsdev/git-context/internal/ui" ) var removeCmd = &cobra.Command{ diff --git a/cmd/root.go b/cmd/root.go index 42d8e7d..24c7704 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -3,10 +3,10 @@ package cmd import ( "fmt" - "github.com/aanogueira/git-context/internal/config" - "github.com/aanogueira/git-context/internal/ui" "github.com/cockroachdb/errors" "github.com/spf13/cobra" + "github.com/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/ui" ) var rootCmd = &cobra.Command{ diff --git a/cmd/show.go b/cmd/show.go index 5baffbd..8e0f7c6 100644 --- a/cmd/show.go +++ b/cmd/show.go @@ -3,10 +3,10 @@ package cmd import ( "fmt" - "github.com/aanogueira/git-context/internal/config" - "github.com/aanogueira/git-context/internal/ui" "github.com/cockroachdb/errors" "github.com/spf13/cobra" + "github.com/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/ui" ) var showCmd = &cobra.Command{ diff --git a/cmd/switch.go b/cmd/switch.go index 09cad18..8aee9a8 100644 --- a/cmd/switch.go +++ b/cmd/switch.go @@ -3,11 +3,11 @@ package cmd import ( "fmt" - "github.com/aanogueira/git-context/internal/config" - "github.com/aanogueira/git-context/internal/git" - "github.com/aanogueira/git-context/internal/ui" "github.com/cockroachdb/errors" "github.com/spf13/cobra" + "github.com/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/git" + "github.com/techquestsdev/git-context/internal/ui" ) var switchCmd = &cobra.Command{ diff --git a/go.mod b/go.mod index 0c93a36..63aa7d9 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/aanogueira/git-context +module github.com/techquestsdev/git-context go 1.25.0 diff --git a/internal/git/git.go b/internal/git/git.go index 24a83d3..8c5dd7b 100644 --- a/internal/git/git.go +++ b/internal/git/git.go @@ -8,8 +8,8 @@ import ( "sort" "strings" - "github.com/aanogueira/git-context/internal/config" "github.com/cockroachdb/errors" + "github.com/techquestsdev/git-context/internal/config" ) // Git handles git config operations. diff --git a/internal/git/git_test.go b/internal/git/git_test.go index fbf1115..c532091 100644 --- a/internal/git/git_test.go +++ b/internal/git/git_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - "github.com/aanogueira/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/config" ) func TestNewGit(t *testing.T) { diff --git a/main.go b/main.go index b7d72a8..3452548 100644 --- a/main.go +++ b/main.go @@ -4,7 +4,7 @@ import ( "fmt" "os" - "github.com/aanogueira/git-context/cmd" + "github.com/techquestsdev/git-context/cmd" ) // version is set at build time via goreleaser's