Skip to content

Commit adf5a83

Browse files
committed
Rename to "github/gh-cli"
1 parent bbe16fe commit adf5a83

File tree

11 files changed

+16
-22
lines changed

11 files changed

+16
-22
lines changed

command/pr.go

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

6-
"github.com/github/gh/git"
7-
"github.com/github/gh/github"
6+
"github.com/github/gh-cli/git"
7+
"github.com/github/gh-cli/github"
88
"github.com/spf13/cobra"
99
)
1010

github/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"strings"
1515
"time"
1616

17-
"github.com/github/gh/version"
17+
"github.com/github/gh-cli/version"
1818
)
1919

2020
const (

github/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"strings"
1313
"syscall"
1414

15-
"github.com/github/gh/ui"
16-
"github.com/github/gh/utils"
15+
"github.com/github/gh-cli/ui"
16+
"github.com/github/gh-cli/utils"
1717
"github.com/mitchellh/go-homedir"
1818
"golang.org/x/crypto/ssh/terminal"
1919
)

github/hosts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"strings"
88

9-
"github.com/github/gh/git"
9+
"github.com/github/gh-cli/git"
1010
)
1111

1212
var (

github/http.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import (
2020
"strings"
2121
"time"
2222

23-
"github.com/github/gh/ui"
24-
"github.com/github/gh/utils"
23+
"github.com/github/gh-cli/ui"
24+
"github.com/github/gh-cli/utils"
2525
)
2626

2727
const apiPayloadVersion = "application/vnd.github.v3+json;charset=utf-8"

github/project.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"path/filepath"
88
"strings"
99

10-
"github.com/github/gh/git"
11-
"github.com/github/gh/utils"
10+
"github.com/github/gh-cli/git"
11+
"github.com/github/gh-cli/utils"
1212
)
1313

1414
type Project struct {

github/remote.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"regexp"
77
"strings"
88

9-
"github.com/github/gh/git"
9+
"github.com/github/gh-cli/git"
1010
)
1111

1212
var (

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/github/gh
1+
module github.com/github/gh-cli
22

33
go 1.13
44

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/github/gh/command"
7+
"github.com/github/gh-cli/command"
88
)
99

1010
func main() {

utils/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strings"
1111
"time"
1212

13-
"github.com/github/gh/ui"
13+
"github.com/github/gh-cli/ui"
1414
"github.com/kballard/go-shellquote"
1515
)
1616

0 commit comments

Comments
 (0)