mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-11-30 09:16:47 +02:00
13 lines
218 B
Go
13 lines
218 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
|
|
Head bool
|
|
}
|