1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-14 11:23:09 +02:00
lazygit/pkg/commands/branch.go

11 lines
166 B
Go
Raw Normal View History

2018-08-13 12:26:02 +02:00
package commands
2018-08-13 12:26:02 +02:00
// Branch : A git branch
// duplicating this for now
type Branch struct {
2018-12-07 09:52:31 +02:00
Name string
Recency string
Pushables string
Pullables string
}