summaryrefslogtreecommitdiffstats
path: root/pkg/commands/git.go
diff options
context:
space:
mode:
authorStefan Haller <stefan@haller-berlin.de>2023-02-19 11:36:06 +0100
committerStefan Haller <stefan@haller-berlin.de>2023-02-19 16:13:31 +0100
commitac9515d8c77dab0da87d913db6c2bdec3be6fe3c (patch)
treefdce23e9f5a0575bd4c5651e0338dfcb23390413 /pkg/commands/git.go
parent67b8ef449cf13ad7ac6dc52829331ad9803fefff (diff)
Revert "fix: improve backward compatibility"
Since we now require git 2.20, we don't need this any more. This reverts commit 7c5f33980f541472aa29e4e072ace63358983308.
Diffstat (limited to 'pkg/commands/git.go')
-rw-r--r--pkg/commands/git.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/commands/git.go b/pkg/commands/git.go
index e2a31c009..35cead260 100644
--- a/pkg/commands/git.go
+++ b/pkg/commands/git.go
@@ -133,7 +133,7 @@ func NewGitCommandAux(
reflogCommitLoader := git_commands.NewReflogCommitLoader(cmn, cmd)
remoteLoader := git_commands.NewRemoteLoader(cmn, cmd, repo.Remotes)
stashLoader := git_commands.NewStashLoader(cmn, cmd)
- tagLoader := git_commands.NewTagLoader(cmn, version, cmd)
+ tagLoader := git_commands.NewTagLoader(cmn, cmd)
return &GitCommand{
Branch: branchCommands,