summaryrefslogtreecommitdiffstats
path: root/pkg/commands/remote.go
blob: 1dc9f7e7f772f4104a5b63fff5e9369151879441 (plain)
1
2
3
4
5
6
7
8
package commands

// Remote : A git remote
type Remote struct {
	Name     string
	Urls     []string
	Branches []*RemoteBranch
}