summaryrefslogtreecommitdiffstats
path: root/pkg/commands/branch.go
blob: f0f97a3314ec7382ca3737bb3f215bfcdcac6e2e (plain)
1
2
3
4
5
6
7
8
9
10
11
package commands

// Branch : A git branch
// duplicating this for now
type Branch struct {
	Name         string
	Recency      string
	Pushables    string
	Pullables    string
	UpstreamName string
}