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

// Branch : A git branch
// duplicating this for now
type Branch struct {
	Name string
	// the displayname is something like '(HEAD detached at 123asdf)', whereas in that case the name would be '123asdf'
	DisplayName  string
	Recency      string
	Pushables    string
	Pullables    string
	UpstreamName string
	Head         bool
}