aboutsummaryrefslogtreecommitdiffstats
path: root/storage/filesystem
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2017-01-30 23:52:39 +0100
committerMáximo Cuadros <mcuadros@gmail.com>2017-01-30 23:52:39 +0100
commit85a4efcc45312f022111907d82c5cc4ee3bdbb73 (patch)
tree2664a776225ba29d70b1dfcb4e89365f7682007d /storage/filesystem
parent30ebf1bd9bb44f540d31633a12689c7d8b6a0167 (diff)
downloadgo-git-85a4efcc45312f022111907d82c5cc4ee3bdbb73.tar.gz
new srcd.works/go-git.v4 path
Diffstat (limited to 'storage/filesystem')
-rw-r--r--storage/filesystem/config.go4
-rw-r--r--storage/filesystem/config_test.go2
-rw-r--r--storage/filesystem/index.go4
-rw-r--r--storage/filesystem/internal/dotgit/dotgit.go2
-rw-r--r--storage/filesystem/internal/dotgit/dotgit_test.go2
-rw-r--r--storage/filesystem/internal/dotgit/writers.go8
-rw-r--r--storage/filesystem/object.go14
-rw-r--r--storage/filesystem/object_test.go4
-rw-r--r--storage/filesystem/reference.go6
-rw-r--r--storage/filesystem/shallow.go4
-rw-r--r--storage/filesystem/storage.go2
-rw-r--r--storage/filesystem/storage_test.go2
12 files changed, 27 insertions, 27 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"