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 /storage | |
parent | 30ebf1bd9bb44f540d31633a12689c7d8b6a0167 (diff) | |
download | go-git-85a4efcc45312f022111907d82c5cc4ee3bdbb73.tar.gz |
new srcd.works/go-git.v4 path
Diffstat (limited to 'storage')
-rw-r--r-- | storage/filesystem/config.go | 4 | ||||
-rw-r--r-- | storage/filesystem/config_test.go | 2 | ||||
-rw-r--r-- | storage/filesystem/index.go | 4 | ||||
-rw-r--r-- | storage/filesystem/internal/dotgit/dotgit.go | 2 | ||||
-rw-r--r-- | storage/filesystem/internal/dotgit/dotgit_test.go | 2 | ||||
-rw-r--r-- | storage/filesystem/internal/dotgit/writers.go | 8 | ||||
-rw-r--r-- | storage/filesystem/object.go | 14 | ||||
-rw-r--r-- | storage/filesystem/object_test.go | 4 | ||||
-rw-r--r-- | storage/filesystem/reference.go | 6 | ||||
-rw-r--r-- | storage/filesystem/shallow.go | 4 | ||||
-rw-r--r-- | storage/filesystem/storage.go | 2 | ||||
-rw-r--r-- | storage/filesystem/storage_test.go | 2 | ||||
-rw-r--r-- | storage/memory/storage.go | 8 | ||||
-rw-r--r-- | storage/memory/storage_test.go | 2 | ||||
-rw-r--r-- | storage/test/storage_suite.go | 8 |
15 files changed, 36 insertions, 36 deletions
diff --git a/storage/filesystem/config.go b/storage/filesystem/config.go index cad698a..4da70d4 100644 --- a/storage/filesystem/config.go +++ b/storage/filesystem/config.go @@ -4,8 +4,8 @@ import ( "io/ioutil" "os" - "gopkg.in/src-d/go-git.v4/config" - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" + "srcd.works/go-git.v4/config" + "srcd.works/go-git.v4/storage/filesystem/internal/dotgit" ) type ConfigStorage struct { diff --git a/storage/filesystem/config_test.go b/storage/filesystem/config_test.go index 460f807..94665b6 100644 --- a/storage/filesystem/config_test.go +++ b/storage/filesystem/config_test.go @@ -5,7 +5,7 @@ import ( "os" "github.com/src-d/go-git-fixtures" - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" + "srcd.works/go-git.v4/storage/filesystem/internal/dotgit" . "gopkg.in/check.v1" "srcd.works/go-billy.v1/osfs" diff --git a/storage/filesystem/index.go b/storage/filesystem/index.go index 456ef0b..009b26f 100644 --- a/storage/filesystem/index.go +++ b/storage/filesystem/index.go @@ -3,8 +3,8 @@ package filesystem import ( "os" - "gopkg.in/src-d/go-git.v4/plumbing/format/index" - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" + "srcd.works/go-git.v4/plumbing/format/index" + "srcd.works/go-git.v4/storage/filesystem/internal/dotgit" ) type IndexStorage struct { diff --git a/storage/filesystem/internal/dotgit/dotgit.go b/storage/filesystem/internal/dotgit/dotgit.go index 1281b7e..accf9ca 100644 --- a/storage/filesystem/internal/dotgit/dotgit.go +++ b/storage/filesystem/internal/dotgit/dotgit.go @@ -9,7 +9,7 @@ import ( "os" "strings" - "gopkg.in/src-d/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing" "srcd.works/go-billy.v1" ) diff --git a/storage/filesystem/internal/dotgit/dotgit_test.go b/storage/filesystem/internal/dotgit/dotgit_test.go index 4be8eea..a335e5f 100644 --- a/storage/filesystem/internal/dotgit/dotgit_test.go +++ b/storage/filesystem/internal/dotgit/dotgit_test.go @@ -8,7 +8,7 @@ import ( "testing" "github.com/src-d/go-git-fixtures" - "gopkg.in/src-d/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing" . "gopkg.in/check.v1" "srcd.works/go-billy.v1/osfs" diff --git a/storage/filesystem/internal/dotgit/writers.go b/storage/filesystem/internal/dotgit/writers.go index 1cd893d..5949ace 100644 --- a/storage/filesystem/internal/dotgit/writers.go +++ b/storage/filesystem/internal/dotgit/writers.go @@ -5,10 +5,10 @@ import ( "io" "sync/atomic" - "gopkg.in/src-d/go-git.v4/plumbing" - "gopkg.in/src-d/go-git.v4/plumbing/format/idxfile" - "gopkg.in/src-d/go-git.v4/plumbing/format/objfile" - "gopkg.in/src-d/go-git.v4/plumbing/format/packfile" + "srcd.works/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing/format/idxfile" + "srcd.works/go-git.v4/plumbing/format/objfile" + "srcd.works/go-git.v4/plumbing/format/packfile" "srcd.works/go-billy.v1" ) diff --git a/storage/filesystem/object.go b/storage/filesystem/object.go index b82ca30..2975c1e 100644 --- a/storage/filesystem/object.go +++ b/storage/filesystem/object.go @@ -4,13 +4,13 @@ import ( "io" "os" - "gopkg.in/src-d/go-git.v4/plumbing" - "gopkg.in/src-d/go-git.v4/plumbing/format/idxfile" - "gopkg.in/src-d/go-git.v4/plumbing/format/objfile" - "gopkg.in/src-d/go-git.v4/plumbing/format/packfile" - "gopkg.in/src-d/go-git.v4/plumbing/storer" - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" - "gopkg.in/src-d/go-git.v4/storage/memory" + "srcd.works/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing/format/idxfile" + "srcd.works/go-git.v4/plumbing/format/objfile" + "srcd.works/go-git.v4/plumbing/format/packfile" + "srcd.works/go-git.v4/plumbing/storer" + "srcd.works/go-git.v4/storage/filesystem/internal/dotgit" + "srcd.works/go-git.v4/storage/memory" "srcd.works/go-billy.v1" ) diff --git a/storage/filesystem/object_test.go b/storage/filesystem/object_test.go index d741fa2..2caa70c 100644 --- a/storage/filesystem/object_test.go +++ b/storage/filesystem/object_test.go @@ -2,8 +2,8 @@ package filesystem import ( "github.com/src-d/go-git-fixtures" - "gopkg.in/src-d/go-git.v4/plumbing" - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" + "srcd.works/go-git.v4/plumbing" + "srcd.works/go-git.v4/storage/filesystem/internal/dotgit" . "gopkg.in/check.v1" ) diff --git a/storage/filesystem/reference.go b/storage/filesystem/reference.go index 93da68c..ee87830 100644 --- a/storage/filesystem/reference.go +++ b/storage/filesystem/reference.go @@ -1,9 +1,9 @@ package filesystem import ( - "gopkg.in/src-d/go-git.v4/plumbing" - "gopkg.in/src-d/go-git.v4/plumbing/storer" - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" + "srcd.works/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing/storer" + "srcd.works/go-git.v4/storage/filesystem/internal/dotgit" ) type ReferenceStorage struct { diff --git a/storage/filesystem/shallow.go b/storage/filesystem/shallow.go index ec8d20e..edd95c8 100644 --- a/storage/filesystem/shallow.go +++ b/storage/filesystem/shallow.go @@ -4,8 +4,8 @@ import ( "bufio" "fmt" - "gopkg.in/src-d/go-git.v4/plumbing" - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" + "srcd.works/go-git.v4/plumbing" + "srcd.works/go-git.v4/storage/filesystem/internal/dotgit" ) // ShallowStorage where the shallow commits are stored, an internal to diff --git a/storage/filesystem/storage.go b/storage/filesystem/storage.go index 56f84b8..7021d3a 100644 --- a/storage/filesystem/storage.go +++ b/storage/filesystem/storage.go @@ -2,7 +2,7 @@ package filesystem import ( - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" + "srcd.works/go-git.v4/storage/filesystem/internal/dotgit" "srcd.works/go-billy.v1" ) diff --git a/storage/filesystem/storage_test.go b/storage/filesystem/storage_test.go index c48fdd2..e398d22 100644 --- a/storage/filesystem/storage_test.go +++ b/storage/filesystem/storage_test.go @@ -3,7 +3,7 @@ package filesystem import ( "testing" - "gopkg.in/src-d/go-git.v4/storage/test" + "srcd.works/go-git.v4/storage/test" . "gopkg.in/check.v1" "srcd.works/go-billy.v1/osfs" diff --git a/storage/memory/storage.go b/storage/memory/storage.go index 5d0bff1..6cec47b 100644 --- a/storage/memory/storage.go +++ b/storage/memory/storage.go @@ -4,10 +4,10 @@ package memory import ( "fmt" - "gopkg.in/src-d/go-git.v4/config" - "gopkg.in/src-d/go-git.v4/plumbing" - "gopkg.in/src-d/go-git.v4/plumbing/format/index" - "gopkg.in/src-d/go-git.v4/plumbing/storer" + "srcd.works/go-git.v4/config" + "srcd.works/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing/format/index" + "srcd.works/go-git.v4/plumbing/storer" ) var ErrUnsupportedObjectType = fmt.Errorf("unsupported object type") diff --git a/storage/memory/storage_test.go b/storage/memory/storage_test.go index ee8fa93..e5b8d93 100644 --- a/storage/memory/storage_test.go +++ b/storage/memory/storage_test.go @@ -4,7 +4,7 @@ import ( "testing" . "gopkg.in/check.v1" - "gopkg.in/src-d/go-git.v4/storage/test" + "srcd.works/go-git.v4/storage/test" ) func Test(t *testing.T) { TestingT(t) } diff --git a/storage/test/storage_suite.go b/storage/test/storage_suite.go index ca2f783..6fc2937 100644 --- a/storage/test/storage_suite.go +++ b/storage/test/storage_suite.go @@ -7,10 +7,10 @@ import ( "io" "io/ioutil" - "gopkg.in/src-d/go-git.v4/config" - "gopkg.in/src-d/go-git.v4/plumbing" - "gopkg.in/src-d/go-git.v4/plumbing/format/index" - "gopkg.in/src-d/go-git.v4/plumbing/storer" + "srcd.works/go-git.v4/config" + "srcd.works/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing/format/index" + "srcd.works/go-git.v4/plumbing/storer" . "gopkg.in/check.v1" ) |