aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/storer
diff options
context:
space:
mode:
Diffstat (limited to 'plumbing/storer')
-rw-r--r--plumbing/storer/index.go2
-rw-r--r--plumbing/storer/object.go2
-rw-r--r--plumbing/storer/object_test.go2
-rw-r--r--plumbing/storer/reference.go2
-rw-r--r--plumbing/storer/reference_test.go2
-rw-r--r--plumbing/storer/shallow.go2
6 files changed, 6 insertions, 6 deletions
diff --git a/plumbing/storer/index.go b/plumbing/storer/index.go
index 8148454..e087296 100644
--- a/plumbing/storer/index.go
+++ b/plumbing/storer/index.go
@@ -1,6 +1,6 @@
package storer
-import "srcd.works/go-git.v4/plumbing/format/index"
+import "gopkg.in/src-d/go-git.v4/plumbing/format/index"
// IndexStorer generic storage of index.Index
type IndexStorer interface {
diff --git a/plumbing/storer/object.go b/plumbing/storer/object.go
index 30ab689..a733ee6 100644
--- a/plumbing/storer/object.go
+++ b/plumbing/storer/object.go
@@ -4,7 +4,7 @@ import (
"errors"
"io"
- "srcd.works/go-git.v4/plumbing"
+ "gopkg.in/src-d/go-git.v4/plumbing"
)
var (
diff --git a/plumbing/storer/object_test.go b/plumbing/storer/object_test.go
index 5726156..6bdd25c 100644
--- a/plumbing/storer/object_test.go
+++ b/plumbing/storer/object_test.go
@@ -5,7 +5,7 @@ import (
"testing"
. "gopkg.in/check.v1"
- "srcd.works/go-git.v4/plumbing"
+ "gopkg.in/src-d/go-git.v4/plumbing"
)
func Test(t *testing.T) { TestingT(t) }
diff --git a/plumbing/storer/reference.go b/plumbing/storer/reference.go
index d821ecf..bc063b6 100644
--- a/plumbing/storer/reference.go
+++ b/plumbing/storer/reference.go
@@ -4,7 +4,7 @@ import (
"errors"
"io"
- "srcd.works/go-git.v4/plumbing"
+ "gopkg.in/src-d/go-git.v4/plumbing"
)
const MaxResolveRecursion = 1024
diff --git a/plumbing/storer/reference_test.go b/plumbing/storer/reference_test.go
index ff7bd68..ee6c95d 100644
--- a/plumbing/storer/reference_test.go
+++ b/plumbing/storer/reference_test.go
@@ -5,7 +5,7 @@ import (
"io"
. "gopkg.in/check.v1"
- "srcd.works/go-git.v4/plumbing"
+ "gopkg.in/src-d/go-git.v4/plumbing"
)
type ReferenceSuite struct{}
diff --git a/plumbing/storer/shallow.go b/plumbing/storer/shallow.go
index a38e751..39aaaa5 100644
--- a/plumbing/storer/shallow.go
+++ b/plumbing/storer/shallow.go
@@ -1,6 +1,6 @@
package storer
-import "srcd.works/go-git.v4/plumbing"
+import "gopkg.in/src-d/go-git.v4/plumbing"
// ShallowStorer is a storage of references to shallow commits by hash,
// meaning that these commits have missing parents because of a shallow fetch.