jesseduffield.lazygit/pkg/commands/remote.go
2020-08-23 14:29:18 +10:00

13 lines
182 B
Go

package commands
// Remote : A git remote
type Remote struct {
Name string
Urls []string
Branches []*RemoteBranch
}
func (r *Remote) RefName() string {
return r.Name
}