1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-03 00:57:52 +02:00
Jesse Duffield
2020-05-18 20:19:29 +10:00
parent f8dedb710b
commit 04e93317b8

View File

@ -52,7 +52,7 @@ func (b *BranchListBuilder) obtainBranches() []*Branch {
split := strings.Split(line, SEPARATION_CHAR) split := strings.Split(line, SEPARATION_CHAR)
name := split[1] name := strings.TrimPrefix(split[1], "heads/")
branch := &Branch{ branch := &Branch{
Name: name, Name: name,
Pullables: "?", Pullables: "?",