aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/storer
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2020-03-10 00:40:56 +0100
committerMáximo Cuadros <mcuadros@gmail.com>2020-03-10 00:40:56 +0100
commit2bdfd91f04068220a72feeade31defc09f2a601e (patch)
treeeb3096d97addee6d5a95538a90d37fe4146312e3 /plumbing/storer
parent042981be1fc9aa9b182c3c35b7e2258845e13f49 (diff)
downloadgo-git-2bdfd91f04068220a72feeade31defc09f2a601e.tar.gz
*: migration from gopkg to go modules
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 e087296..3311394 100644
--- a/plumbing/storer/index.go
+++ b/plumbing/storer/index.go
@@ -1,6 +1,6 @@
package storer
-import "gopkg.in/src-d/go-git.v4/plumbing/format/index"
+import "github.com/go-git/go-git/v5/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 c84960a..dfe309d 100644
--- a/plumbing/storer/object.go
+++ b/plumbing/storer/object.go
@@ -5,7 +5,7 @@ import (
"io"
"time"
- "gopkg.in/src-d/go-git.v4/plumbing"
+ "github.com/go-git/go-git/v5/plumbing"
)
var (
diff --git a/plumbing/storer/object_test.go b/plumbing/storer/object_test.go
index bc22f7b..8dc3623 100644
--- a/plumbing/storer/object_test.go
+++ b/plumbing/storer/object_test.go
@@ -5,7 +5,7 @@ import (
"testing"
. "gopkg.in/check.v1"
- "gopkg.in/src-d/go-git.v4/plumbing"
+ "github.com/go-git/go-git/v5/plumbing"
)
func Test(t *testing.T) { TestingT(t) }
diff --git a/plumbing/storer/reference.go b/plumbing/storer/reference.go
index cce72b4..1d74ef3 100644
--- a/plumbing/storer/reference.go
+++ b/plumbing/storer/reference.go
@@ -4,7 +4,7 @@ import (
"errors"
"io"
- "gopkg.in/src-d/go-git.v4/plumbing"
+ "github.com/go-git/go-git/v5/plumbing"
)
const MaxResolveRecursion = 1024
diff --git a/plumbing/storer/reference_test.go b/plumbing/storer/reference_test.go
index 1d02c22..0660043 100644
--- a/plumbing/storer/reference_test.go
+++ b/plumbing/storer/reference_test.go
@@ -5,7 +5,7 @@ import (
"io"
. "gopkg.in/check.v1"
- "gopkg.in/src-d/go-git.v4/plumbing"
+ "github.com/go-git/go-git/v5/plumbing"
)
type ReferenceSuite struct{}
diff --git a/plumbing/storer/shallow.go b/plumbing/storer/shallow.go
index 39aaaa5..39ef5ea 100644
--- a/plumbing/storer/shallow.go
+++ b/plumbing/storer/shallow.go
@@ -1,6 +1,6 @@
package storer
-import "gopkg.in/src-d/go-git.v4/plumbing"
+import "github.com/go-git/go-git/v5/plumbing"
// ShallowStorer is a storage of references to shallow commits by hash,
// meaning that these commits have missing parents because of a shallow fetch.