jesseduffield.lazygit/pkg/commands/branch.go
2020-03-18 21:29:06 +11:00

12 lines
199 B
Go

package commands
// Branch : A git branch
// duplicating this for now
type Branch struct {
Name string
Recency string
Pushables string
Pullables string
UpstreamName string
}