Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions cmd/add.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
4 changes: 2 additions & 2 deletions cmd/cmd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
4 changes: 2 additions & 2 deletions cmd/current.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
6 changes: 3 additions & 3 deletions cmd/dir.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
2 changes: 1 addition & 1 deletion cmd/dir_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cmd/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions cmd/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
6 changes: 3 additions & 3 deletions cmd/remove.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
4 changes: 2 additions & 2 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
4 changes: 2 additions & 2 deletions cmd/show.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
6 changes: 3 additions & 3 deletions cmd/switch.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/aanogueira/git-context
module github.com/techquestsdev/git-context

go 1.25.0

Expand Down
2 changes: 1 addition & 1 deletion internal/git/git.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion internal/git/git_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading