Skip to content

Commit c429777

Browse files
authored
move to gitql github organization (#32)
1 parent 3b1df5c commit c429777

40 files changed

+70
-70
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<img src="https://rawgit.com/gitql/gitql/master/gitql-logo.svg" alt="gitql" width="250"/>
22

3-
[![Build Status](https://travis-ci.org/mvader/gitql.svg?branch=master)](https://travis-ci.org/mvader/gitql) [![codecov](https://codecov.io/gh/mvader/gitql/branch/master/graph/badge.svg)](https://codecov.io/gh/mvader/gitql) [![GoDoc](https://godoc.org/github.com/gitql/gitql?status.svg)](https://godoc.org/github.com/gitql/gitql)
3+
[![Build Status](https://travis-ci.org/gitql/gitql.svg?branch=master)](https://travis-ci.org/gitql/gitql) [![codecov](https://codecov.io/gh/gitql/gitql/branch/master/graph/badge.svg)](https://codecov.io/gh/gitql/gitql) [![GoDoc](https://godoc.org/github.com/gitql/gitql?status.svg)](https://godoc.org/github.com/gitql/gitql)

cmd/gitql/query.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import (
66
"os"
77
"path/filepath"
88

9-
gitqlgit "github.com/mvader/gitql/git"
10-
"github.com/mvader/gitql/sql"
9+
gitqlgit "github.com/gitql/gitql/git"
10+
"github.com/gitql/gitql/sql"
1111

1212
"gopkg.in/src-d/go-git.v4"
13-
"github.com/mvader/gitql"
13+
"github.com/gitql/gitql"
1414
"io"
1515
"github.com/olekukonko/tablewriter"
1616
)

engine.go

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

6-
"github.com/mvader/gitql/sql/analyzer"
7-
"github.com/mvader/gitql/sql/parse"
8-
"github.com/mvader/gitql/sql"
6+
"github.com/gitql/gitql/sql/analyzer"
7+
"github.com/gitql/gitql/sql/parse"
8+
"github.com/gitql/gitql/sql"
99
)
1010

1111
type Engine struct {

engine_test.go

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

77
"github.com/stretchr/testify/require"
8-
"github.com/mvader/gitql/sql"
9-
"github.com/mvader/gitql/mem"
10-
"github.com/mvader/gitql"
8+
"github.com/gitql/gitql/sql"
9+
"github.com/gitql/gitql/mem"
10+
"github.com/gitql/gitql"
1111
)
1212

1313
func TestEngine_Query(t *testing.T) {

git/commits.go

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

6-
"github.com/mvader/gitql/sql"
6+
"github.com/gitql/gitql/sql"
77

88
"gopkg.in/src-d/go-git.v4"
99
)

git/database.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package git
22

33
import (
4-
"github.com/mvader/gitql/sql"
4+
"github.com/gitql/gitql/sql"
55

66
"gopkg.in/src-d/go-git.v4"
77
)

mem/database.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package mem
22

3-
import "github.com/mvader/gitql/sql"
3+
import "github.com/gitql/gitql/sql"
44

55
type Database struct {
66
name string

mem/database_test.go

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

66
"github.com/stretchr/testify/assert"
7-
"github.com/mvader/gitql/sql"
7+
"github.com/gitql/gitql/sql"
88
)
99

1010
func TestDatabase_Name(t *testing.T) {

mem/table.go

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

7-
"github.com/mvader/gitql/sql"
7+
"github.com/gitql/gitql/sql"
88
)
99

1010
type Table struct {

mem/table_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66

77
"github.com/stretchr/testify/assert"
8-
"github.com/mvader/gitql/sql"
8+
"github.com/gitql/gitql/sql"
99
)
1010

1111
func TestTable_Name(t *testing.T) {

0 commit comments

Comments
 (0)