/
githubmirror
/
lazygit
Обзор
Документация
Войти
/
githubmirror
/
lazygit
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
pkg/commands/models/worktree.go
40 строк
1 KB
Ruud Kamphuis
Show branch name and detached HEAD in worktrees tab
08 мар 2026, 14:51
08 мар 2026, 14:51
727b4b5
Код
Авторство
О чём код?
package models // A git worktree type Worktree struct { // if false, this is a linked worktree IsMain bool // if true, this is the worktree that is currently checked out IsCurrent bool // path to the directory of the worktree i.e. the directory that contains all the user's files Path string // if true, the path is not found IsPathMissing bool // path of the git directory for this worktree. The equivalent of the .git directory // in the main worktree. For linked worktrees this would be <repo_path>/.git/worktrees/<name> GitDir string // If the worktree has a branch checked out, this field will be set to the branch name. // A branch is considered 'checked out' if: // * the worktree is directly on the branch // * the worktree is mid-rebase on the branch // * the worktree is mid-bisect on the branch Branch string // The HEAD sha of the worktree. Always populated (even when Branch is set). // Used for display when Branch is empty (detached HEAD state). Head string // based on the path, but uniquified. Not the same name that git uses in the worktrees/ folder (no good reason for this, // I just prefer my naming convention better) Name string } func (w *Worktree) RefName() string { return w.Name } func (w *Worktree) ID() string { return w.Path } func (w *Worktree) Description() string { return w.RefName() }