1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-26 05:37:18 +02:00
lazygit/pkg/commands/remote.go

9 lines
128 B
Go
Raw Normal View History

2019-11-13 23:18:29 +11:00
package commands
// Remote : A git remote
type Remote struct {
Name string
Urls []string
2019-11-17 10:23:06 +11:00
Branches []*RemoteBranch
2019-11-13 23:18:29 +11:00
}