1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03: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

@ -10,6 +10,10 @@ func (r *RemoteBranch) FullName() string {
return r.RemoteName + "/" + r.Name
}
func (r *RemoteBranch) FullRefName() string {
return "refs/remotes/" + r.FullName()
}
func (r *RemoteBranch) RefName() string {
return r.FullName()
}