1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-11-29 22:48:24 +02:00

fix: fix ambiguous refname

This commit is contained in:
Ryooooooga
2022-05-12 19:16:58 +09:00
parent 5529088e43
commit 61970a4439
10 changed files with 25 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ func (gui *Gui) remoteBranchesRenderToMain() error {
if remoteBranch == nil {
task = NewRenderStringTask("No branches for this remote")
} else {
cmdObj := gui.git.Branch.GetGraphCmdObj(remoteBranch.FullName())
cmdObj := gui.git.Branch.GetGraphCmdObj(remoteBranch.FullRefName())
task = NewRunCommandTask(cmdObj.GetCmd())
}