diff options
author | Antonio Jesus Navarro Perez <antonio@sourced.tech> | 2017-03-07 12:58:18 +0100 |
---|---|---|
committer | Antonio Jesus Navarro Perez <antonio@sourced.tech> | 2017-03-07 12:58:18 +0100 |
commit | 33e7c165c9fb5594821005b7ee55826e5a305487 (patch) | |
tree | 2f858902843f22379c80512c4b2f2dc1221723ad /plumbing/storer | |
parent | f64e4b856865bc37f45e55ef094060481b53928e (diff) | |
download | go-git-33e7c165c9fb5594821005b7ee55826e5a305487.tar.gz |
project: move imports from srcd.works to gopkg.in
To be able to fix #261 we will move again to gopkg.in before v4 stable release.
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 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. |