summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2020-03-27 08:00:13 +0100
committerJesse Duffield <jessedduffield@gmail.com>2020-03-27 19:06:21 +1100
commit2d8ed5e274b39946baa9130d95cfb99641e8ba5d (patch)
tree4d2f4d7596cd85f00752edcdebd398b66a93ae6f /pkg
parent6a5d8ba8595702dc0715d4aa67bc65dbb55f8f91 (diff)
*: update go-git import
Diffstat (limited to 'pkg')
-rw-r--r--pkg/commands/git.go2
-rw-r--r--pkg/commands/git_test.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkg/commands/git.go b/pkg/commands/git.go
index 8c76ddf48..6188de86d 100644
--- a/pkg/commands/git.go
+++ b/pkg/commands/git.go
@@ -15,12 +15,12 @@ import (
"github.com/go-errors/errors"
+ gogit "github.com/go-git/go-git/v5"
"github.com/jesseduffield/lazygit/pkg/config"
"github.com/jesseduffield/lazygit/pkg/i18n"
"github.com/jesseduffield/lazygit/pkg/utils"
"github.com/sirupsen/logrus"
gitconfig "github.com/tcnksm/go-gitconfig"
- gogit "gopkg.in/src-d/go-git.v4"
)
// this takes something like:
diff --git a/pkg/commands/git_test.go b/pkg/commands/git_test.go
index 249d104e2..2fc9f1ffb 100644
--- a/pkg/commands/git_test.go
+++ b/pkg/commands/git_test.go
@@ -10,10 +10,10 @@ import (
"time"
"github.com/go-errors/errors"
+ gogit "github.com/go-git/go-git/v5"
"github.com/jesseduffield/lazygit/pkg/i18n"
"github.com/jesseduffield/lazygit/pkg/test"
"github.com/stretchr/testify/assert"
- gogit "gopkg.in/src-d/go-git.v4"
)
type fileInfoMock struct {