summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2020-10-06 20:50:54 +1100
committerJesse Duffield <jessedduffield@gmail.com>2020-10-06 21:58:41 +1100
commit6e076472b8fb2d052e0b1c35d3fff3dd263ae722 (patch)
tree57d521a3c4879f4985e926578cbec66eb6427e21 /pkg
parent3e15ae32112970e39de68ef0d5bf96fa5e2bcd40 (diff)
switch to fork of go-git
Diffstat (limited to 'pkg')
-rw-r--r--pkg/commands/git.go2
-rw-r--r--pkg/commands/git_test.go2
-rw-r--r--pkg/commands/status.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/pkg/commands/git.go b/pkg/commands/git.go
index ab2819f75..af1533886 100644
--- a/pkg/commands/git.go
+++ b/pkg/commands/git.go
@@ -8,7 +8,7 @@ import (
"github.com/go-errors/errors"
- gogit "github.com/go-git/go-git/v5"
+ gogit "github.com/jesseduffield/go-git/v5"
"github.com/jesseduffield/lazygit/pkg/commands/oscommands"
"github.com/jesseduffield/lazygit/pkg/commands/patch"
"github.com/jesseduffield/lazygit/pkg/config"
diff --git a/pkg/commands/git_test.go b/pkg/commands/git_test.go
index cab1ba39f..87384930f 100644
--- a/pkg/commands/git_test.go
+++ b/pkg/commands/git_test.go
@@ -11,7 +11,7 @@ import (
"time"
"github.com/go-errors/errors"
- gogit "github.com/go-git/go-git/v5"
+ gogit "github.com/jesseduffield/go-git/v5"
"github.com/jesseduffield/lazygit/pkg/commands/models"
"github.com/jesseduffield/lazygit/pkg/commands/oscommands"
"github.com/jesseduffield/lazygit/pkg/config"
diff --git a/pkg/commands/status.go b/pkg/commands/status.go
index 83d16759c..c5a6c2526 100644
--- a/pkg/commands/status.go
+++ b/pkg/commands/status.go
@@ -3,7 +3,7 @@ package commands
import (
"path/filepath"
- gogit "github.com/go-git/go-git/v5"
+ gogit "github.com/jesseduffield/go-git/v5"
)
// RebaseMode returns "" for non-rebase mode, "normal" for normal rebase