Skip to content

Commit

Permalink
Change namespace to github/hub
Browse files Browse the repository at this point in the history
  • Loading branch information
owenthereal committed Feb 10, 2014
1 parent b9703e6 commit 498789a
Show file tree
Hide file tree
Showing 46 changed files with 90 additions and 88 deletions.
8 changes: 4 additions & 4 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package cmd

import (
"fmt"
"github.com/jingweno/gh/utils"
"github.com/github/hub/utils"
"github.com/kballard/go-shellquote"
"os"
"os/exec"
Expand Down
2 changes: 1 addition & 1 deletion commands/alias.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package commands

import (
"fmt"
"github.com/jingweno/gh/utils"
"github.com/github/hub/utils"
"os"
"path/filepath"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion commands/args.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package commands

import (
"fmt"
"github.com/jingweno/gh/cmd"
"github.com/github/hub/cmd"
"strings"
)

Expand Down
4 changes: 2 additions & 2 deletions commands/browse.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package commands

import (
"fmt"
"github.com/jingweno/gh/github"
"github.com/jingweno/gh/utils"
"github.com/github/hub/github"
"github.com/github/hub/utils"
"net/url"
"reflect"
"strings"
Expand Down
4 changes: 2 additions & 2 deletions commands/checkout.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package commands

import (
"fmt"
"github.com/jingweno/gh/github"
"github.com/jingweno/gh/utils"
"github.com/github/hub/github"
"github.com/github/hub/utils"
"regexp"
)

Expand Down
4 changes: 2 additions & 2 deletions commands/cherry_pick.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package commands

import (
"github.com/jingweno/gh/github"
"github.com/jingweno/gh/utils"
"github.com/github/hub/github"
"github.com/github/hub/utils"
"regexp"
)

Expand Down
6 changes: 3 additions & 3 deletions commands/ci_status.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package commands

import (
"fmt"
"github.com/jingweno/gh/git"
"github.com/jingweno/gh/github"
"github.com/jingweno/gh/utils"
"github.com/github/hub/git"
"github.com/github/hub/github"
"github.com/github/hub/utils"
"os"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/clone.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package commands

import (
"github.com/jingweno/gh/github"
"github.com/github/hub/github"
"regexp"
"strings"
)
Expand Down
2 changes: 1 addition & 1 deletion commands/clone_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package commands

import (
"github.com/bmizerany/assert"
"github.com/jingweno/gh/github"
"github.com/github/hub/github"
"os"
"testing"
)
Expand Down
4 changes: 2 additions & 2 deletions commands/compare.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"regexp"
"strings"

"github.com/jingweno/gh/github"
"github.com/jingweno/gh/utils"
"github.com/github/hub/github"
"github.com/github/hub/utils"
)

var cmdCompare = &Command{
Expand Down
6 changes: 3 additions & 3 deletions commands/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package commands

import (
"fmt"
"github.com/jingweno/gh/git"
"github.com/jingweno/gh/github"
"github.com/jingweno/gh/utils"
"github.com/github/hub/git"
"github.com/github/hub/github"
"github.com/github/hub/utils"
"regexp"
"strings"
)
Expand Down
4 changes: 2 additions & 2 deletions commands/fetch.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package commands

import (
"github.com/jingweno/gh/github"
"github.com/jingweno/gh/utils"
"github.com/github/hub/github"
"github.com/github/hub/utils"
"regexp"
"strings"
)
Expand Down
4 changes: 2 additions & 2 deletions commands/fork.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package commands

import (
"fmt"
"github.com/jingweno/gh/github"
"github.com/jingweno/gh/utils"
"github.com/github/hub/github"
"github.com/github/hub/utils"
"os"
"reflect"
)
Expand Down
4 changes: 2 additions & 2 deletions commands/init.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package commands

import (
"github.com/jingweno/gh/github"
"github.com/jingweno/gh/utils"
"github.com/github/hub/github"
"github.com/github/hub/utils"
)

var cmdInit = &Command{
Expand Down
2 changes: 1 addition & 1 deletion commands/init_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package commands

import (
"github.com/bmizerany/assert"
"github.com/jingweno/gh/github"
"github.com/github/hub/github"
"os"
"regexp"
"testing"
Expand Down
5 changes: 3 additions & 2 deletions commands/issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ package commands

import (
"fmt"
"github.com/jingweno/gh/github"
"github.com/jingweno/gh/utils"

"github.com/github/hub/github"
"github.com/github/hub/utils"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions commands/merge.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package commands

import (
"fmt"
"github.com/jingweno/gh/github"
"github.com/jingweno/gh/utils"
"github.com/github/hub/github"
"github.com/github/hub/utils"
"regexp"
)

Expand Down
6 changes: 3 additions & 3 deletions commands/pull_request.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package commands

import (
"fmt"
"github.com/jingweno/gh/git"
"github.com/jingweno/gh/github"
"github.com/jingweno/gh/utils"
"github.com/github/hub/git"
"github.com/github/hub/github"
"github.com/github/hub/utils"
"reflect"
"regexp"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion commands/pull_request_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package commands

import (
"github.com/bmizerany/assert"
"github.com/jingweno/gh/github"
"github.com/github/hub/github"
"testing"
)

Expand Down
4 changes: 2 additions & 2 deletions commands/push.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package commands

import (
"github.com/jingweno/gh/github"
"github.com/jingweno/gh/utils"
"github.com/github/hub/github"
"github.com/github/hub/utils"
"strings"
)

Expand Down
4 changes: 2 additions & 2 deletions commands/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package commands
import (
"bytes"
"fmt"
"github.com/jingweno/gh/github"
"github.com/jingweno/gh/utils"
"github.com/github/hub/github"
"github.com/github/hub/utils"
"github.com/jingweno/go-octokit/octokit"
"io"
"net/http"
Expand Down
4 changes: 2 additions & 2 deletions commands/remote.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package commands

import (
"fmt"
"github.com/jingweno/gh/github"
"github.com/jingweno/gh/utils"
"github.com/github/hub/github"
"github.com/github/hub/utils"
"regexp"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/remote_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package commands

import (
"github.com/bmizerany/assert"
"github.com/jingweno/gh/github"
"github.com/github/hub/github"
"os"
"regexp"
"testing"
Expand Down
6 changes: 3 additions & 3 deletions commands/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package commands

import (
"fmt"
"github.com/jingweno/gh/cmd"
"github.com/jingweno/gh/git"
"github.com/jingweno/gh/utils"
"github.com/github/hub/cmd"
"github.com/github/hub/git"
"github.com/github/hub/utils"
"github.com/kballard/go-shellquote"
flag "github.com/ogier/pflag"
"os"
Expand Down
2 changes: 1 addition & 1 deletion commands/submodule_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package commands

import (
"github.com/bmizerany/assert"
"github.com/jingweno/gh/github"
"github.com/github/hub/github"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion commands/update.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package commands

import (
"github.com/jingweno/gh/utils"
"github.com/github/hub/utils"
"os"
)

Expand Down
6 changes: 3 additions & 3 deletions commands/updater.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package commands
import (
"archive/zip"
"fmt"
"github.com/github/hub/git"
"github.com/github/hub/github"
"github.com/github/hub/utils"
goupdate "github.com/inconshreveable/go-update"
"github.com/jingweno/gh/git"
"github.com/jingweno/gh/github"
"github.com/jingweno/gh/utils"
"io"
"io/ioutil"
"math/rand"
Expand Down
2 changes: 1 addition & 1 deletion commands/updater_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package commands
import (
"fmt"
"github.com/bmizerany/assert"
"github.com/jingweno/gh/git"
"github.com/github/hub/git"
"io"
"io/ioutil"
"net/http"
Expand Down
4 changes: 2 additions & 2 deletions commands/utils.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package commands

import (
"github.com/jingweno/gh/github"
"github.com/jingweno/gh/utils"
"github.com/github/hub/github"
"github.com/github/hub/utils"
"github.com/jingweno/go-octokit/octokit"
"io/ioutil"
"os"
Expand Down
Loading

0 comments on commit 498789a

Please sign in to comment.