1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-05 13:24:54 +02:00
lazygit/pkg/commands/branch.go

13 lines
218 B
Go
Raw Normal View History

2018-08-13 20:26:02 +10:00
package commands
2018-08-13 20:26:02 +10:00
// Branch : A git branch
// duplicating this for now
type Branch struct {
Name string
Recency string
Pushables string
Pullables string
UpstreamName string
2020-03-19 12:04:17 +11:00
Head bool
}