1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

fix: improve backward compatibility

This commit is contained in:
Ryooooooga
2022-12-31 22:47:21 +09:00
parent cceff63823
commit 7c5f33980f
3 changed files with 48 additions and 11 deletions

View File

@ -128,7 +128,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, cmd)
tagLoader := git_commands.NewTagLoader(cmn, version, cmd)
return &GitCommand{
Branch: branchCommands,