summaryrefslogtreecommitdiffstats
path: root/pkg/commands/branch.go
blob: d6c4d953b570061e8e8edd7a0eafe4e98618e86e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
}