mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-02 09:21:40 +02:00
11 lines
166 B
Go
11 lines
166 B
Go
package commands
|
|
|
|
// Branch : A git branch
|
|
// duplicating this for now
|
|
type Branch struct {
|
|
Name string
|
|
Recency string
|
|
Pushables string
|
|
Pullables string
|
|
}
|