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..5ac82af 100644 --- a/cmd/add.go +++ b/cmd/add.go @@ -3,9 +3,9 @@ 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/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/git" + "github.com/techquestsdev/git-context/internal/ui" "github.com/cockroachdb/errors" "github.com/spf13/cobra" ) diff --git a/cmd/cmd_test.go b/cmd/cmd_test.go index 82af633..3e80e40 100644 --- a/cmd/cmd_test.go +++ b/cmd/cmd_test.go @@ -9,8 +9,8 @@ import ( "sync" "testing" - "github.com/aanogueira/git-context/internal/config" - "github.com/aanogueira/git-context/internal/git" + "github.com/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/git" "github.com/cockroachdb/errors" "github.com/fatih/color" ) diff --git a/cmd/current.go b/cmd/current.go index f48694e..6daaf2c 100644 --- a/cmd/current.go +++ b/cmd/current.go @@ -7,8 +7,8 @@ import ( "path/filepath" "strings" - "github.com/aanogueira/git-context/internal/config" - "github.com/aanogueira/git-context/internal/ui" + "github.com/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/ui" "github.com/cockroachdb/errors" "github.com/spf13/cobra" ) diff --git a/cmd/dir.go b/cmd/dir.go index 260becc..a23317a 100644 --- a/cmd/dir.go +++ b/cmd/dir.go @@ -5,9 +5,9 @@ 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/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/git" + "github.com/techquestsdev/git-context/internal/ui" "github.com/cockroachdb/errors" "github.com/spf13/cobra" ) 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..493ddb5 100644 --- a/cmd/list.go +++ b/cmd/list.go @@ -5,8 +5,8 @@ import ( "sort" "strconv" - "github.com/aanogueira/git-context/internal/config" - "github.com/aanogueira/git-context/internal/ui" + "github.com/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/ui" "github.com/cockroachdb/errors" "github.com/spf13/cobra" ) diff --git a/cmd/remove.go b/cmd/remove.go index b07243c..d6fb1f4 100644 --- a/cmd/remove.go +++ b/cmd/remove.go @@ -3,9 +3,9 @@ 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/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/git" + "github.com/techquestsdev/git-context/internal/ui" "github.com/cockroachdb/errors" "github.com/spf13/cobra" ) diff --git a/cmd/root.go b/cmd/root.go index 42d8e7d..46b8b8f 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -3,8 +3,8 @@ package cmd import ( "fmt" - "github.com/aanogueira/git-context/internal/config" - "github.com/aanogueira/git-context/internal/ui" + "github.com/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/ui" "github.com/cockroachdb/errors" "github.com/spf13/cobra" ) diff --git a/cmd/show.go b/cmd/show.go index 5baffbd..c9ba3c5 100644 --- a/cmd/show.go +++ b/cmd/show.go @@ -3,8 +3,8 @@ package cmd import ( "fmt" - "github.com/aanogueira/git-context/internal/config" - "github.com/aanogueira/git-context/internal/ui" + "github.com/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/ui" "github.com/cockroachdb/errors" "github.com/spf13/cobra" ) diff --git a/cmd/switch.go b/cmd/switch.go index 09cad18..7da2941 100644 --- a/cmd/switch.go +++ b/cmd/switch.go @@ -3,9 +3,9 @@ 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/techquestsdev/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/git" + "github.com/techquestsdev/git-context/internal/ui" "github.com/cockroachdb/errors" "github.com/spf13/cobra" ) 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..7e11163 100644 --- a/internal/git/git.go +++ b/internal/git/git.go @@ -8,7 +8,7 @@ import ( "sort" "strings" - "github.com/aanogueira/git-context/internal/config" + "github.com/techquestsdev/git-context/internal/config" "github.com/cockroachdb/errors" ) 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