1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-15 00:15:32 +02:00

Improve worktree panel

This commit is contained in:
Joel Baranick
2022-09-02 20:08:36 -07:00
committed by Jesse Duffield
parent c679fd1924
commit 54708233ac
3 changed files with 16 additions and 13 deletions

View File

@ -1,6 +1,7 @@
package git_commands
import (
"path/filepath"
"strings"
"github.com/jesseduffield/lazygit/pkg/commands/models"
@ -46,18 +47,11 @@ func (self *WorktreeLoader) GetWorktrees() ([]*models.Worktree, error) {
Id: len(worktrees),
Path: path,
}
} else if strings.HasPrefix(splitLine, "branch ") {
branch := strings.SplitN(splitLine, " ", 2)[1]
currentWorktree.Branch = filepath.Base(branch)
}
}
/*
worktree /Users/jbaranick/Source/lazygit
HEAD f6d6b5dec0432ffa953611700ab9b1ff0089f948
branch refs/heads/worktree_support
worktree /Users/jbaranick/Source/lazygit/.worktrees/worktree_tests
HEAD f6d6b5dec0432ffa953611700ab9b1ff0089f948
branch refs/heads/worktree_tests
*/
return worktrees, nil
}