diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-01-30 23:52:39 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2017-01-30 23:52:39 +0100 |
commit | 85a4efcc45312f022111907d82c5cc4ee3bdbb73 (patch) | |
tree | 2664a776225ba29d70b1dfcb4e89365f7682007d /plumbing/storer | |
parent | 30ebf1bd9bb44f540d31633a12689c7d8b6a0167 (diff) | |
download | go-git-85a4efcc45312f022111907d82c5cc4ee3bdbb73.tar.gz |
new srcd.works/go-git.v4 path
Diffstat (limited to 'plumbing/storer')
-rw-r--r-- | plumbing/storer/index.go | 2 | ||||
-rw-r--r-- | plumbing/storer/object.go | 2 | ||||
-rw-r--r-- | plumbing/storer/object_test.go | 2 | ||||
-rw-r--r-- | plumbing/storer/reference.go | 2 | ||||
-rw-r--r-- | plumbing/storer/reference_test.go | 2 | ||||
-rw-r--r-- | plumbing/storer/shallow.go | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/plumbing/storer/index.go b/plumbing/storer/index.go index e087296..8148454 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 "srcd.works/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 a733ee6..30ab689 100644 --- a/plumbing/storer/object.go +++ b/plumbing/storer/object.go @@ -4,7 +4,7 @@ import ( "errors" "io" - "gopkg.in/src-d/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing" ) var ( diff --git a/plumbing/storer/object_test.go b/plumbing/storer/object_test.go index 6bdd25c..5726156 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" + "srcd.works/go-git.v4/plumbing" ) func Test(t *testing.T) { TestingT(t) } diff --git a/plumbing/storer/reference.go b/plumbing/storer/reference.go index 5e818c6..40474f9 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" + "srcd.works/go-git.v4/plumbing" ) const MaxResolveRecursion = 1024 diff --git a/plumbing/storer/reference_test.go b/plumbing/storer/reference_test.go index 3014df5..f698820 100644 --- a/plumbing/storer/reference_test.go +++ b/plumbing/storer/reference_test.go @@ -4,7 +4,7 @@ import ( "io" . "gopkg.in/check.v1" - "gopkg.in/src-d/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing" ) type ReferenceSuite struct{} diff --git a/plumbing/storer/shallow.go b/plumbing/storer/shallow.go index 4366135..f93060d 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 "srcd.works/go-git.v4/plumbing" // ShallowStorer storage of references to shallow commits by hash, meaning that // these commits have missing parents because of a shallow fetch. |