Rename module to match the repo name · Entire
Rename module to match the repo name
d63e99c→main·
nodo·3mo ago·35 files·+76 added/-76 removed
Sessions
d1dfba38e667View transcript
[?
can you change the module name from github.com/soph/git-sync to github.com/enitrehq/git-sync ?Claude Code·Opus 4.6[1m]·2 steps](/content/gh/entireio/git-sync/session/be1a18de-2cb7-4306-972b-1c58b5256718#timeline-d1dfba38e667/index.html)
Changes
35
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
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/soph/git-sync/internal/validation"
"github.com/soph/git-sync/pkg/gitsync"
"github.com/soph/git-sync/pkg/gitsync/unstable"
"github.com/entirehq/git-sync/internal/validation"
"github.com/entirehq/git-sync/pkg/gitsync"
"github.com/entirehq/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/soph/git-sync/pkg/gitsync/unstable"
"github.com/entirehq/git-sync/pkg/gitsync/unstable"
)
func TestSummarizeRuns(t *testing.T) {
Mcmd/git-sync-bench/main_test.go+1/-1
9 unmodified lines
10
11
12
13
14
15
13
14
15
16
17
18
9 unmodified lines
"strings"
"github.com/go-git/go-git/v6/plumbing"
"github.com/soph/git-sync/internal/validation"
"github.com/soph/git-sync/pkg/gitsync"
"github.com/soph/git-sync/pkg/gitsync/unstable"
"github.com/entirehq/git-sync/internal/validation"
"github.com/entirehq/git-sync/pkg/gitsync"
"github.com/entirehq/git-sync/pkg/gitsync/unstable"
)
func main() {
Mcmd/git-sync/main.go+3/-3
23 unmodified lines
24
25
26
27
27
28
29
30
23 unmodified lines
"github.com/go-git/go-git/v6/plumbing/transport"
transporthttp "github.com/go-git/go-git/v6/plumbing/transport/http"
"github.com/go-git/go-git/v6/storage/memory"
"github.com/soph/git-sync/pkg/gitsync/unstable"
"github.com/entirehq/git-sync/pkg/gitsync/unstable"
)
const testBranch = "master"
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/soph/git-sync/pkg/gitsync"
"github.com/entirehq/git-sync/pkg/gitsync"
)
func runSync(ctx context.Context) error {
Mdocs/embedding.md+1/-1
1
1
2
3
4
module github.com/soph/git-sync
module github.com/entirehq/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/soph/git-sync/internal/gitproto"
"github.com/soph/git-sync/internal/planner"
"github.com/entirehq/git-sync/internal/gitproto"
"github.com/entirehq/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"
func TestDesiredRefsForPlans(t *testing.T) {
Minternal/convert/convert_test.go+2/-2
7 unmodified lines
8
9
10
11
11
12
13
14
7 unmodified lines
"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"
"github.com/soph/git-sync/internal/validation"
"github.com/entirehq/git-sync/internal/validation"
// PlanConfig holds configuration for plan generation.
Minternal/planner/planner.go+1/-1
9 unmodified lines
10
11
12
13
13
14
15
16
9 unmodified lines
"github.com/go-git/go-git/v6/plumbing"
"github.com/go-git/go-git/v6/plumbing/object"
"github.com/go-git/go-git/v6/storage/memory"
"github.com/soph/git-sync/internal/validation"
"github.com/entirehq/git-sync/internal/validation"
func TestSelectBranches(t *testing.T) {}}}