Skip to content

Commit 9509cb2

Browse files
committed
move repo to github org
1 parent d1df702 commit 9509cb2

File tree

16 files changed

+33
-33
lines changed

16 files changed

+33
-33
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Stacked PRs break large changes into a chain of small, reviewable pull requests
77
## Installation
88

99
```sh
10-
gh extension install githubnext/gh-stack
10+
gh extension install github/gh-stack
1111
```
1212

1313
Requires the [GitHub CLI](https://cli.github.com/) (`gh`) v2.0+.

cmd/add.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package cmd
33
import (
44
"fmt"
55

6-
"github.com/githubnext/gh-stack/internal/config"
7-
"github.com/githubnext/gh-stack/internal/git"
8-
"github.com/githubnext/gh-stack/internal/stack"
6+
"github.com/github/gh-stack/internal/config"
7+
"github.com/github/gh-stack/internal/git"
8+
"github.com/github/gh-stack/internal/stack"
99
"github.com/spf13/cobra"
1010
)
1111

cmd/checkout.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"strconv"
66
"strings"
77

8-
"github.com/githubnext/gh-stack/internal/config"
9-
"github.com/githubnext/gh-stack/internal/git"
10-
"github.com/githubnext/gh-stack/internal/stack"
8+
"github.com/github/gh-stack/internal/config"
9+
"github.com/github/gh-stack/internal/git"
10+
"github.com/github/gh-stack/internal/stack"
1111
"github.com/spf13/cobra"
1212
)
1313

cmd/delete.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package cmd
33
import (
44
"fmt"
55

6-
"github.com/githubnext/gh-stack/internal/config"
7-
"github.com/githubnext/gh-stack/internal/git"
8-
"github.com/githubnext/gh-stack/internal/stack"
6+
"github.com/github/gh-stack/internal/config"
7+
"github.com/github/gh-stack/internal/git"
8+
"github.com/github/gh-stack/internal/stack"
99
"github.com/spf13/cobra"
1010
)
1111

cmd/feedback.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cmd
33
import (
44
"fmt"
55

6-
"github.com/githubnext/gh-stack/internal/config"
6+
"github.com/github/gh-stack/internal/config"
77
"github.com/spf13/cobra"
88
)
99

@@ -66,7 +66,7 @@ func runFeedback(cfg *config.Config, opts *feedbackOptions) error {
6666

6767
cfg.Successf("Thank you for your feedback! This is currently a placeholder.\n")
6868
cfg.Printf("In the future, feedback will be submitted automatically.\n")
69-
cfg.Printf("For now, please open an issue at: https://github.com/githubnext/gh-stack/issues\n")
69+
cfg.Printf("For now, please open an issue at: https://github.com/github/gh-stack/issues\n")
7070

7171
return nil
7272
}

cmd/init.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"os"
66

77
"github.com/cli/go-gh/v2/pkg/prompter"
8-
"github.com/githubnext/gh-stack/internal/config"
9-
"github.com/githubnext/gh-stack/internal/git"
10-
"github.com/githubnext/gh-stack/internal/stack"
8+
"github.com/github/gh-stack/internal/config"
9+
"github.com/github/gh-stack/internal/git"
10+
"github.com/github/gh-stack/internal/stack"
1111
"github.com/spf13/cobra"
1212
)
1313

cmd/merge.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cmd
33
import (
44
"fmt"
55

6-
"github.com/githubnext/gh-stack/internal/config"
6+
"github.com/github/gh-stack/internal/config"
77
"github.com/spf13/cobra"
88
)
99

cmd/navigate.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package cmd
33
import (
44
"fmt"
55

6-
"github.com/githubnext/gh-stack/internal/config"
7-
"github.com/githubnext/gh-stack/internal/git"
8-
"github.com/githubnext/gh-stack/internal/stack"
6+
"github.com/github/gh-stack/internal/config"
7+
"github.com/github/gh-stack/internal/git"
8+
"github.com/github/gh-stack/internal/stack"
99
"github.com/spf13/cobra"
1010
)
1111

cmd/placeholder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cmd
33
import (
44
"fmt"
55

6-
"github.com/githubnext/gh-stack/internal/config"
6+
"github.com/github/gh-stack/internal/config"
77
"github.com/spf13/cobra"
88
)
99

cmd/push.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package cmd
33
import (
44
"fmt"
55

6-
"github.com/githubnext/gh-stack/internal/config"
7-
"github.com/githubnext/gh-stack/internal/git"
8-
"github.com/githubnext/gh-stack/internal/stack"
6+
"github.com/github/gh-stack/internal/config"
7+
"github.com/github/gh-stack/internal/git"
8+
"github.com/github/gh-stack/internal/stack"
99
"github.com/spf13/cobra"
1010
)
1111

0 commit comments

Comments
 (0)