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/object | |
parent | 30ebf1bd9bb44f540d31633a12689c7d8b6a0167 (diff) | |
download | go-git-85a4efcc45312f022111907d82c5cc4ee3bdbb73.tar.gz |
new srcd.works/go-git.v4 path
Diffstat (limited to 'plumbing/object')
-rw-r--r-- | plumbing/object/blob.go | 6 | ||||
-rw-r--r-- | plumbing/object/blob_test.go | 2 | ||||
-rw-r--r-- | plumbing/object/commit.go | 6 | ||||
-rw-r--r-- | plumbing/object/commit_test.go | 4 | ||||
-rw-r--r-- | plumbing/object/commit_walker.go | 2 | ||||
-rw-r--r-- | plumbing/object/file.go | 4 | ||||
-rw-r--r-- | plumbing/object/file_test.go | 6 | ||||
-rw-r--r-- | plumbing/object/object.go | 4 | ||||
-rw-r--r-- | plumbing/object/object_test.go | 6 | ||||
-rw-r--r-- | plumbing/object/tag.go | 6 | ||||
-rw-r--r-- | plumbing/object/tag_test.go | 6 | ||||
-rw-r--r-- | plumbing/object/tree.go | 6 | ||||
-rw-r--r-- | plumbing/object/tree_test.go | 4 |
13 files changed, 31 insertions, 31 deletions
diff --git a/plumbing/object/blob.go b/plumbing/object/blob.go index aaeb7bf..f274e70 100644 --- a/plumbing/object/blob.go +++ b/plumbing/object/blob.go @@ -3,9 +3,9 @@ package object import ( "io" - "gopkg.in/src-d/go-git.v4/plumbing" - "gopkg.in/src-d/go-git.v4/plumbing/storer" - "gopkg.in/src-d/go-git.v4/utils/ioutil" + "srcd.works/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing/storer" + "srcd.works/go-git.v4/utils/ioutil" ) // Blob is used to store file data - it is generally a file. diff --git a/plumbing/object/blob_test.go b/plumbing/object/blob_test.go index 5ed9de0..955aa46 100644 --- a/plumbing/object/blob_test.go +++ b/plumbing/object/blob_test.go @@ -4,7 +4,7 @@ import ( "io" "io/ioutil" - "gopkg.in/src-d/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing" . "gopkg.in/check.v1" ) diff --git a/plumbing/object/commit.go b/plumbing/object/commit.go index fb87f8a..394f04f 100644 --- a/plumbing/object/commit.go +++ b/plumbing/object/commit.go @@ -8,9 +8,9 @@ import ( "sort" "strings" - "gopkg.in/src-d/go-git.v4/plumbing" - "gopkg.in/src-d/go-git.v4/plumbing/storer" - "gopkg.in/src-d/go-git.v4/utils/ioutil" + "srcd.works/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing/storer" + "srcd.works/go-git.v4/utils/ioutil" ) // Hash represents the hash of an object diff --git a/plumbing/object/commit_test.go b/plumbing/object/commit_test.go index d30e1c4..be42906 100644 --- a/plumbing/object/commit_test.go +++ b/plumbing/object/commit_test.go @@ -5,10 +5,10 @@ import ( "time" "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" - "gopkg.in/src-d/go-git.v4/storage/filesystem" + "srcd.works/go-git.v4/storage/filesystem" ) type SuiteCommit struct { diff --git a/plumbing/object/commit_walker.go b/plumbing/object/commit_walker.go index dcce6b9..1514cb3 100644 --- a/plumbing/object/commit_walker.go +++ b/plumbing/object/commit_walker.go @@ -3,7 +3,7 @@ package object import ( "io" - "gopkg.in/src-d/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing" ) type commitWalker struct { diff --git a/plumbing/object/file.go b/plumbing/object/file.go index 4dc1a9f..618cea7 100644 --- a/plumbing/object/file.go +++ b/plumbing/object/file.go @@ -6,8 +6,8 @@ import ( "os" "strings" - "gopkg.in/src-d/go-git.v4/plumbing/storer" - "gopkg.in/src-d/go-git.v4/utils/ioutil" + "srcd.works/go-git.v4/plumbing/storer" + "srcd.works/go-git.v4/utils/ioutil" ) // File represents git file objects. diff --git a/plumbing/object/file_test.go b/plumbing/object/file_test.go index 58c7676..4c8bbb6 100644 --- a/plumbing/object/file_test.go +++ b/plumbing/object/file_test.go @@ -4,9 +4,9 @@ import ( "io" "github.com/src-d/go-git-fixtures" - "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" + "srcd.works/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing/storer" + "srcd.works/go-git.v4/storage/filesystem" . "gopkg.in/check.v1" ) diff --git a/plumbing/object/object.go b/plumbing/object/object.go index a48449b..51d9bc4 100644 --- a/plumbing/object/object.go +++ b/plumbing/object/object.go @@ -8,8 +8,8 @@ import ( "strconv" "time" - "gopkg.in/src-d/go-git.v4/plumbing" - "gopkg.in/src-d/go-git.v4/plumbing/storer" + "srcd.works/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing/storer" ) // ErrUnsupportedObject trigger when a non-supported object is being decoded. diff --git a/plumbing/object/object_test.go b/plumbing/object/object_test.go index 4dd0777..426baed 100644 --- a/plumbing/object/object_test.go +++ b/plumbing/object/object_test.go @@ -7,9 +7,9 @@ import ( "time" "github.com/src-d/go-git-fixtures" - "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" + "srcd.works/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing/storer" + "srcd.works/go-git.v4/storage/filesystem" . "gopkg.in/check.v1" ) diff --git a/plumbing/object/tag.go b/plumbing/object/tag.go index f747ca0..1b18dbf 100644 --- a/plumbing/object/tag.go +++ b/plumbing/object/tag.go @@ -7,9 +7,9 @@ import ( "io" stdioutil "io/ioutil" - "gopkg.in/src-d/go-git.v4/plumbing" - "gopkg.in/src-d/go-git.v4/plumbing/storer" - "gopkg.in/src-d/go-git.v4/utils/ioutil" + "srcd.works/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing/storer" + "srcd.works/go-git.v4/utils/ioutil" ) // Tag represents an annotated tag object. It points to a single git object of diff --git a/plumbing/object/tag_test.go b/plumbing/object/tag_test.go index deb961e..8fbd932 100644 --- a/plumbing/object/tag_test.go +++ b/plumbing/object/tag_test.go @@ -6,9 +6,9 @@ import ( "time" "github.com/src-d/go-git-fixtures" - "gopkg.in/src-d/go-git.v4/plumbing" - "gopkg.in/src-d/go-git.v4/storage/filesystem" - "gopkg.in/src-d/go-git.v4/storage/memory" + "srcd.works/go-git.v4/plumbing" + "srcd.works/go-git.v4/storage/filesystem" + "srcd.works/go-git.v4/storage/memory" . "gopkg.in/check.v1" ) diff --git a/plumbing/object/tree.go b/plumbing/object/tree.go index e197310..546dd74 100644 --- a/plumbing/object/tree.go +++ b/plumbing/object/tree.go @@ -10,9 +10,9 @@ import ( "strconv" "strings" - "gopkg.in/src-d/go-git.v4/plumbing" - "gopkg.in/src-d/go-git.v4/plumbing/storer" - "gopkg.in/src-d/go-git.v4/utils/ioutil" + "srcd.works/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing/storer" + "srcd.works/go-git.v4/utils/ioutil" ) const ( diff --git a/plumbing/object/tree_test.go b/plumbing/object/tree_test.go index 8613300..be721b9 100644 --- a/plumbing/object/tree_test.go +++ b/plumbing/object/tree_test.go @@ -4,10 +4,10 @@ import ( "io" "os" - "gopkg.in/src-d/go-git.v4/plumbing" + "srcd.works/go-git.v4/plumbing" . "gopkg.in/check.v1" - "gopkg.in/src-d/go-git.v4/plumbing/storer" + "srcd.works/go-git.v4/plumbing/storer" ) type TreeSuite struct { |