Skip to content
Open
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,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"
)
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,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"
)
Expand Down
4 changes: 2 additions & 2 deletions cmd/current.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
6 changes: 3 additions & 3 deletions cmd/dir.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
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,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"
)
Expand Down
6 changes: 3 additions & 3 deletions cmd/remove.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
4 changes: 2 additions & 2 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
4 changes: 2 additions & 2 deletions cmd/show.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
6 changes: 3 additions & 3 deletions cmd/switch.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
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,7 +8,7 @@ import (
"sort"
"strings"

"github.com/aanogueira/git-context/internal/config"
"github.com/techquestsdev/git-context/internal/config"
"github.com/cockroachdb/errors"
)

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