Merge pull request #12 from entireio/nodo/rename-module-to-entire-io · Entire
Merge pull request #12 from entireio/nodo/rename-module-to-entire-io
396abb4→main·
nodo·2mo ago·36 files·+77 added/-77 removed
Rename module to entire.io/git-sync
Changes
36
cmd
git-sync-bench
Mmain.go+3/-3
Mmain_test.go+1/-1
git-sync
Mmain.go+3/-3
Mmain_test.go+1/-1
docs
Membedding.md+1/-1
Mgo.mod+1/-1
internal
convert
Mconvert.go+2/-2
Mconvert_test.go+2/-2
planner
Mplanner.go+1/-1
Mplanner_test.go+1/-1
Mtypes.go+1/-1
strategy
bootstrap
Mbootstrap.go+3/-3
Mbootstrap_test.go+2/-2
incremental
Mincremental.go+3/-3
Mincremental_test.go+3/-3
materialized
Mmaterialized.go+3/-3
Mmaterialized_test.go+4/-4
replicate
Mreplicate.go+3/-3
Mreplicate_test.go+2/-2
syncer
Mauth_test.go+1/-1
Mbenchmark_test.go+1/-1
Mgit_http_backend_test.go+3/-3
Mintegration_test.go+4/-4
Mstats.go+1/-1
Msyncer.go+9/-9
Msyncer_test.go+1/-1
mise-tasks/lint
Mlicenses+1/-1
pkg/gitsync
Mclient.go+2/-2
Mclient_test.go+1/-1
Mexample_test.go+1/-1
internalbridge
Mconfig.go+2/-2
Mmodel.go+2/-2
Mmodel_test.go+2/-2
Mtypes.go+1/-1
unstable
Mclient.go+4/-4
Mclient_test.go+1/-1
14 unmodified lines
15
16
17
18
19
20
18
19
20
21
22
23
14 unmodified lines
git "github.com/go-git/go-git/v6"
"github.com/entirehq/git-sync/internal/validation"
"github.com/entirehq/git-sync/pkg/gitsync"
"github.com/entirehq/git-sync/pkg/gitsync/unstable"
"entire.io/git-sync/internal/validation"
"entire.io/git-sync/pkg/gitsync"
"entire.io/git-sync/pkg/gitsync/unstable"
)
type scenario string
Mcmd/git-sync-bench/main.go+3/-3
2 unmodified lines
3
4
5
6
6
7
8
9
2 unmodified lines
import (
"testing"
"github.com/entirehq/git-sync/pkg/gitsync/unstable"
"entire.io/git-sync/pkg/gitsync/unstable"
)
func TestSummarizeRuns(t *testing.T) {
Mcmd/git-sync-bench/main_test.go+1/-1
8 unmodified lines
9
10
11
12
13
14
12
13
14
15
16
17
8 unmodified lines
"os"
"strings"
"github.com/entirehq/git-sync/internal/validation"
"github.com/entirehq/git-sync/pkg/gitsync"
"github.com/entirehq/git-sync/pkg/gitsync/unstable"
"entire.io/git-sync/internal/validation"
"entire.io/git-sync/pkg/gitsync"
"entire.io/git-sync/pkg/gitsync/unstable"
"github.com/go-git/go-git/v6/plumbing"
)
Mcmd/git-sync/main.go+3/-3
13 unmodified lines
14
15
16
17
17
18
19
20
13 unmodified lines
"testing"
"time"
"github.com/entirehq/git-sync/pkg/gitsync/unstable"
"entire.io/git-sync/pkg/gitsync/unstable"
billy "github.com/go-git/go-billy/v6"
"github.com/go-git/go-billy/v6/memfs"
git "github.com/go-git/go-git/v6"
Mcmd/git-sync/main_test.go+1/-1
48 unmodified lines
49
50
51
52
52
53
54
55
48 unmodified lines
"context"
"net/http"
"github.com/entirehq/git-sync/pkg/gitsync"
"entire.io/git-sync/pkg/gitsync"
}
Mdocs/embedding.md+1/-1
1
1
2
3
4
module github.com/entirehq/git-sync
module entire.io/git-sync
go 1.25.2
Mgo.mod+1/-1
5 unmodified lines
6
7
8
9
10
9
10
11
12
13
5 unmodified lines
import (
"github.com/go-git/go-git/v6/plumbing"
"github.com/entirehq/git-sync/internal/gitproto"
"github.com/entirehq/git-sync/internal/planner"
"entire.io/git-sync/internal/gitproto"
"entire.io/git-sync/internal/planner"
)
// DesiredRefs converts planner desired refs to gitproto desired refs.
Minternal/convert/convert.go+2/-2
4 unmodified lines
5
6
7
8
9
8
9
10
11
12
4 unmodified lines
"github.com/go-git/go-git/v6/plumbing"
"github.com/entirehq/git-sync/internal/gitproto"
"github.com/entirehq/git-sync/internal/planner"
"entire.io/git-sync/internal/gitproto"
"entire.io/git-sync/internal/planner"
func TestDesiredRefsForPlans(t *testing.T) {
Minternal/convert/convert_test.go+2/-2
4 unmodified lines
5
6
7
8
8
9
10
11
4 unmodified lines
"fmt"
"sort"
"github.com/entirehq/git-sync/internal/validation"
"entire.io/git-sync/internal/validation"
"github.com/go-git/go-git/v6/plumbing"
"github.com/go-git/go-git/v6/plumbing/object"
"github.com/go-git/go-git/v6/plumbing/storer"
Minternal/planner/planner.go+1/-1
5 unmodified lines
6
7
8
9
9
10
11
12
5 unmodified lines
"testing"
"time"
"github.com/entirehq/git-sync/internal/validation"
"entire.io/git-sync/internal/validation"
git "github.com/go-git/go-git/v6"
"github.com/go-git/go-git/v6/plumbing"
"github.com/go-git/go-git/v6/plumbing/object"
Minternal/planner/planner_test.go+1/-1
5 unmodified lines
6
7
8
9
9
10
11
12
5 unmodified lines
"sort"
"strings"
"github.com/entirehq/git-sync/internal/validation"
"entire.io/git-sync/internal/validation"
"github.com/go-git/go-git/v6/plumbing"
}
Minternal/planner/types.go+1/-1
22 unmodified lines
23
24
25
26
27
28
26
27
28
29
30
31
22 unmodified lines
"github.com/go-git/go-git/v6/plumbing/storer"
"github.com/go-git/go-git/v6/storage/memory"
"github.com/entirehq/git-sync/internal/convert"
"github.com/entirehq/git-sync/internal/gitproto"
"github.com/entirehq/git-sync/internal/planner"
"entire.io/git-sync/internal/convert"
"entire.io/git-sync/internal/gitproto"
"entire.io/git-sync/internal/planner"
`