aboutsummaryrefslogtreecommitdiffstats
path: root/repository
diff options
context:
space:
mode:
authorsudoforge <no-reply@sudoforge.com>2024-08-24 08:08:00 -0700
committerGitHub <noreply@github.com>2024-08-24 08:08:00 -0700
commit2004fa79e6ae7645d964a03e2ae2dd808f7d486a (patch)
tree64f3d5291d6957bd57fdb168b6aa10452f0fa1cb /repository
parent63295b1106e0ad01bc1e0d682b71df14558b293a (diff)
downloadgit-bug-2004fa79e6ae7645d964a03e2ae2dd808f7d486a.tar.gz
feat: update references to the git-bug organization (#1249)
The repository was recently moved to the git-bug organization on github. This change refactors references to the repository to ensure that they use the updated owner URI. Closes: #1243 Change-Id: I799712354c6ba25cdd8b06286275850c52efe6ff
Diffstat (limited to 'repository')
-rw-r--r--repository/gogit.go2
-rw-r--r--repository/mock_repo.go4
-rw-r--r--repository/repo.go2
-rw-r--r--repository/repo_testing.go2
4 files changed, 5 insertions, 5 deletions
diff --git a/repository/gogit.go b/repository/gogit.go
index 95c5330d..2862eb7d 100644
--- a/repository/gogit.go
+++ b/repository/gogit.go
@@ -23,7 +23,7 @@ import (
"golang.org/x/sync/errgroup"
"golang.org/x/sys/execabs"
- "github.com/MichaelMure/git-bug/util/lamport"
+ "github.com/git-bug/git-bug/util/lamport"
)
const clockPath = "clocks"
diff --git a/repository/mock_repo.go b/repository/mock_repo.go
index 6ea5c71e..b9cbe138 100644
--- a/repository/mock_repo.go
+++ b/repository/mock_repo.go
@@ -11,7 +11,7 @@ import (
"github.com/ProtonMail/go-crypto/openpgp"
"github.com/go-git/go-billy/v5/memfs"
- "github.com/MichaelMure/git-bug/util/lamport"
+ "github.com/git-bug/git-bug/util/lamport"
)
var _ ClockedRepo = &mockRepo{}
@@ -115,7 +115,7 @@ func (r *mockRepoCommon) GetCoreEditor() (string, error) {
// GetRemotes returns the configured remotes repositories.
func (r *mockRepoCommon) GetRemotes() (map[string]string, error) {
return map[string]string{
- "origin": "git://github.com/MichaelMure/git-bug",
+ "origin": "git://github.com/git-bug/git-bug",
}, nil
}
diff --git a/repository/repo.go b/repository/repo.go
index c39051d5..23474277 100644
--- a/repository/repo.go
+++ b/repository/repo.go
@@ -8,7 +8,7 @@ import (
"github.com/ProtonMail/go-crypto/openpgp"
"github.com/go-git/go-billy/v5"
- "github.com/MichaelMure/git-bug/util/lamport"
+ "github.com/git-bug/git-bug/util/lamport"
)
var (
diff --git a/repository/repo_testing.go b/repository/repo_testing.go
index 3dd702f4..0bf93cee 100644
--- a/repository/repo_testing.go
+++ b/repository/repo_testing.go
@@ -8,7 +8,7 @@ import (
"github.com/ProtonMail/go-crypto/openpgp"
"github.com/stretchr/testify/require"
- "github.com/MichaelMure/git-bug/util/lamport"
+ "github.com/git-bug/git-bug/util/lamport"
)
type RepoCreator func(t testing.TB, bare bool) TestedRepo