fork of go-git with some jj specific features
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #854 from ajnavarro/dotgit-not-internal

dotgit: Move package outside internal.

authored by

Máximo Cuadros and committed by
GitHub
ae788cfa 8955f060

+9 -10
-1
plumbing/transport/test/receive_pack.go
··· 231 231 // fixtures are generated with read only permissions, this casuses 232 232 // errors deleting or modifying files. 233 233 rootPath := ep.Path 234 - println("STAT", rootPath) 235 234 stat, err := os.Stat(ep.Path) 236 235 237 236 if rootPath != "" && err == nil && stat.IsDir() {
+1 -1
storage/filesystem/config.go
··· 5 5 "os" 6 6 7 7 "gopkg.in/src-d/go-git.v4/config" 8 - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" 8 + "gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit" 9 9 "gopkg.in/src-d/go-git.v4/utils/ioutil" 10 10 ) 11 11
+1 -1
storage/filesystem/config_test.go
··· 5 5 "os" 6 6 7 7 "gopkg.in/src-d/go-git.v4/config" 8 - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" 8 + "gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit" 9 9 10 10 . "gopkg.in/check.v1" 11 11 "gopkg.in/src-d/go-billy.v4/osfs"
+1 -1
storage/filesystem/index.go
··· 4 4 "os" 5 5 6 6 "gopkg.in/src-d/go-git.v4/plumbing/format/index" 7 - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" 7 + "gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit" 8 8 "gopkg.in/src-d/go-git.v4/utils/ioutil" 9 9 ) 10 10
storage/filesystem/internal/dotgit/dotgit.go storage/filesystem/dotgit/dotgit.go
storage/filesystem/internal/dotgit/dotgit_rewrite_packed_refs_nix.go storage/filesystem/dotgit/dotgit_rewrite_packed_refs_nix.go
storage/filesystem/internal/dotgit/dotgit_rewrite_packed_refs_norwfs.go storage/filesystem/dotgit/dotgit_rewrite_packed_refs_norwfs.go
storage/filesystem/internal/dotgit/dotgit_rewrite_packed_refs_windows.go storage/filesystem/dotgit/dotgit_rewrite_packed_refs_windows.go
storage/filesystem/internal/dotgit/dotgit_setref.go storage/filesystem/dotgit/dotgit_setref.go
storage/filesystem/internal/dotgit/dotgit_setref_norwfs.go storage/filesystem/dotgit/dotgit_setref_norwfs.go
storage/filesystem/internal/dotgit/dotgit_test.go storage/filesystem/dotgit/dotgit_test.go
storage/filesystem/internal/dotgit/writers.go storage/filesystem/dotgit/writers.go
storage/filesystem/internal/dotgit/writers_test.go storage/filesystem/dotgit/writers_test.go
+1 -1
storage/filesystem/module.go
··· 2 2 3 3 import ( 4 4 "gopkg.in/src-d/go-git.v4/storage" 5 - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" 5 + "gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit" 6 6 ) 7 7 8 8 type ModuleStorage struct {
+1 -1
storage/filesystem/object.go
··· 11 11 "gopkg.in/src-d/go-git.v4/plumbing/format/objfile" 12 12 "gopkg.in/src-d/go-git.v4/plumbing/format/packfile" 13 13 "gopkg.in/src-d/go-git.v4/plumbing/storer" 14 - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" 14 + "gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit" 15 15 "gopkg.in/src-d/go-git.v4/storage/memory" 16 16 "gopkg.in/src-d/go-git.v4/utils/ioutil" 17 17
+1 -1
storage/filesystem/object_test.go
··· 2 2 3 3 import ( 4 4 "gopkg.in/src-d/go-git.v4/plumbing" 5 - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" 5 + "gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit" 6 6 7 7 . "gopkg.in/check.v1" 8 8 "gopkg.in/src-d/go-git-fixtures.v3"
+1 -1
storage/filesystem/reference.go
··· 3 3 import ( 4 4 "gopkg.in/src-d/go-git.v4/plumbing" 5 5 "gopkg.in/src-d/go-git.v4/plumbing/storer" 6 - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" 6 + "gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit" 7 7 ) 8 8 9 9 type ReferenceStorage struct {
+1 -1
storage/filesystem/shallow.go
··· 5 5 "fmt" 6 6 7 7 "gopkg.in/src-d/go-git.v4/plumbing" 8 - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" 8 + "gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit" 9 9 "gopkg.in/src-d/go-git.v4/utils/ioutil" 10 10 ) 11 11
+1 -1
storage/filesystem/storage.go
··· 2 2 package filesystem 3 3 4 4 import ( 5 - "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit" 5 + "gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit" 6 6 7 7 "gopkg.in/src-d/go-billy.v4" 8 8 )