Skip to content

update go-git v4 api #119

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 6, 2017
Merged
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
4 changes: 2 additions & 2 deletions blobs.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package gitquery
import (
"gopkg.in/sqle/sqle.v0/sql"

"srcd.works/go-git.v4"
"srcd.works/go-git.v4/plumbing/object"
"gopkg.in/src-d/go-git.v4"
"gopkg.in/src-d/go-git.v4/plumbing/object"
)

type blobsTable struct {
Expand Down
4 changes: 2 additions & 2 deletions cmd/gitquery/query_base.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"gopkg.in/sqle/gitquery.v0/internal/format"
"gopkg.in/sqle/sqle.v0"

gogit "srcd.works/go-git.v4"
"srcd.works/go-git.v4/utils/ioutil"
gogit "gopkg.in/src-d/go-git.v4"
"gopkg.in/src-d/go-git.v4/utils/ioutil"
)

type cmdQueryBase struct {
Expand Down
4 changes: 2 additions & 2 deletions commits.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package gitquery
import (
"gopkg.in/sqle/sqle.v0/sql"

"srcd.works/go-git.v4"
"srcd.works/go-git.v4/plumbing/object"
"gopkg.in/src-d/go-git.v4"
"gopkg.in/src-d/go-git.v4/plumbing/object"
)

type commitsTable struct {
Expand Down
2 changes: 1 addition & 1 deletion database.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package gitquery
import (
"gopkg.in/sqle/sqle.v0/sql"

"srcd.works/go-git.v4"
"gopkg.in/src-d/go-git.v4"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions database_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (

"github.com/src-d/go-git-fixtures"
"github.com/stretchr/testify/assert"
"srcd.works/go-billy.v1/memfs"
"srcd.works/go-git.v4"
"srcd.works/go-git.v4/storage/filesystem"
"gopkg.in/src-d/go-billy.v2/memfs"
"gopkg.in/src-d/go-git.v4"
"gopkg.in/src-d/go-git.v4/storage/filesystem"
)

func init() {
Expand Down
4 changes: 2 additions & 2 deletions objects.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package gitquery
import (
"gopkg.in/sqle/sqle.v0/sql"

"srcd.works/go-git.v4"
"srcd.works/go-git.v4/plumbing/object"
"gopkg.in/src-d/go-git.v4"
"gopkg.in/src-d/go-git.v4/plumbing/object"
)

type objectsTable struct {
Expand Down
6 changes: 3 additions & 3 deletions references.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package gitquery
import (
"gopkg.in/sqle/sqle.v0/sql"

"srcd.works/go-git.v4"
"srcd.works/go-git.v4/plumbing"
"srcd.works/go-git.v4/plumbing/storer"
"gopkg.in/src-d/go-git.v4"
"gopkg.in/src-d/go-git.v4/plumbing"
"gopkg.in/src-d/go-git.v4/plumbing/storer"
)

type referencesTable struct {
Expand Down
4 changes: 2 additions & 2 deletions tags.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package gitquery
import (
"gopkg.in/sqle/sqle.v0/sql"

"srcd.works/go-git.v4"
"srcd.works/go-git.v4/plumbing/object"
"gopkg.in/src-d/go-git.v4"
"gopkg.in/src-d/go-git.v4/plumbing/object"
)

type tagsTable struct {
Expand Down
4 changes: 2 additions & 2 deletions tree_entries.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (

"gopkg.in/sqle/sqle.v0/sql"

"srcd.works/go-git.v4"
"srcd.works/go-git.v4/plumbing/object"
"gopkg.in/src-d/go-git.v4"
"gopkg.in/src-d/go-git.v4/plumbing/object"
)

type treeEntriesTable struct {
Expand Down